Hi team
I'm trying to insert values into a table and read then back with the same sp with:
Insert into Sales Values(1,2,44.99)
Select * from Sales
When I check the table the values are there. When I run the sp from Query analyser I get the correct results. When I run the query minus the Insert from VB using ADO I get the correct results. However nothing is returned if the sp contains both the the insert and select!
What am I missing?
Cheers
I'm trying to insert values into a table and read then back with the same sp with:
Insert into Sales Values(1,2,44.99)
Select * from Sales
When I check the table the values are there. When I run the sp from Query analyser I get the correct results. When I run the query minus the Insert from VB using ADO I get the correct results. However nothing is returned if the sp contains both the the insert and select!
What am I missing?
Cheers