Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
smckechnie
Starting Member
7 Posts |
Posted - 2005-09-05 : 07:36:30
|
Hi All.Is there a way that SQL can send a message back to the VB6 app that calls an insert stored procedure,that will tell vb6thattherecord has been inserted before the next insert iscalled.Thanks |
|
AndrewMurphy
Master Smack Fu Yak Hacker
2916 Posts |
Posted - 2005-09-05 : 10:57:37
|
It already does....the VB code does not proceed UNTIL the SQL code fully executeds....the Insert is NOT performed 'asynchrously'....UNLESS you are looking for feedback 'during the time that SQL processes a set of inserts/updates/deletes' in which case "No can do" applies. |
|
|
|
|
|