A
acraft
How do you capture this variable from SQL Server?
Example of T-SQL code:
declare @strVariable varchar(20)
set @strVariable = 'This was a success...'
select @strVariable as NEW_FIELD
How do I capture the returned value "This was a success..." without creating
a temporary table on the SQL Server? I am using MS Access and trying to use
the ADO.Recordset.
Should I use a different method? Any suggestions or sample code?
Example of T-SQL code:
declare @strVariable varchar(20)
set @strVariable = 'This was a success...'
select @strVariable as NEW_FIELD
How do I capture the returned value "This was a success..." without creating
a temporary table on the SQL Server? I am using MS Access and trying to use
the ADO.Recordset.
Should I use a different method? Any suggestions or sample code?