PDA

Click to See Complete Forum and Search --> : problems with transactions


Clunietp
Jan 4th, 2000, 12:21 AM
To start a transaction, use BEGINTRANS
To make the changes final, use COMMITTRANS
To undo all changes made since calling begintrans, call ROLLBACKTRANS

You may be calling your begintrans at the wrong time, or not at all. If you are going to use transactions, be sure to be clear on when to use them

matthieu
Jan 4th, 2000, 11:41 AM
If i do rollback statement in my code all my querydefs and recorrdsets are not set anymore
and i all have to define them again. Anyone
knows something about this.