C
Chris Dunaway
We have a database that is accessed by the web to display the data. We
also have programs that insert or update to that database.
What I want to be able to do is insert data using a transaction but I
don't want the web page to display any new rows being inserted until
the transaction is committed.
So, for example, the program begins a transaction to insert an order
header and a number of order details
In the meantime, someone requests data using the web page. I don't
want my new rows being returned to the web page until the transaction
that is inserting (or updating) them is committed.
I tried playing around with the isolation levels but that did not seem
to have any effect.
Thanks for the help.
also have programs that insert or update to that database.
What I want to be able to do is insert data using a transaction but I
don't want the web page to display any new rows being inserted until
the transaction is committed.
So, for example, the program begins a transaction to insert an order
header and a number of order details
In the meantime, someone requests data using the web page. I don't
want my new rows being returned to the web page until the transaction
that is inserting (or updating) them is committed.
I tried playing around with the isolation levels but that did not seem
to have any effect.
Thanks for the help.