P
PeteCresswell
Bond trading system.
Trader does a "Sell".
First thing, I write a single record to "tblTrade" and capture the
auto-numbered PK, which is TradeID.
Then I write many records to "tblTradeDetail", using the captured
TradeID to point to the parent tblTrade record.
But I intend to wrap that entire process in a transaction.
Do I have a problem? Or is JET smart enough to reserve that
AutoNumbered TradeID in the event that another user enters a trade
while my user is still in the process and has not committed their
transaction yet?
Trader does a "Sell".
First thing, I write a single record to "tblTrade" and capture the
auto-numbered PK, which is TradeID.
Then I write many records to "tblTradeDetail", using the captured
TradeID to point to the parent tblTrade record.
But I intend to wrap that entire process in a transaction.
Do I have a problem? Or is JET smart enough to reserve that
AutoNumbered TradeID in the event that another user enters a trade
while my user is still in the process and has not committed their
transaction yet?