G
Guest
if I execute the following proc I can get the first recordset 2 print
statemts and 1 error, but 1 of the print statments and 2 recordsets fail to
show..
Is this possible in ADO.net (Query Analyser has no issues with it....)
Create proc someproc
as
select * from northwind..employees
print 'test'
print 'test2'
raiserror( 'this is a test message',12,4)
select top 1 * from northwind..orders
select top 2 * from northwind..customers
Print 'All DoneQ!'
Specificly I would like to see the second and third recordsets...
Any help appreciated.
Rob
statemts and 1 error, but 1 of the print statments and 2 recordsets fail to
show..
Is this possible in ADO.net (Query Analyser has no issues with it....)
Create proc someproc
as
select * from northwind..employees
print 'test'
print 'test2'
raiserror( 'this is a test message',12,4)
select top 1 * from northwind..orders
select top 2 * from northwind..customers
Print 'All DoneQ!'
Specificly I would like to see the second and third recordsets...
Any help appreciated.
Rob