<br>Hi Littlecat !<br><br>Well, I'm not sure if VBScript use the Connection object like Visual Basic, but for begin a Transaction in VB is necessary to have one instance of an object Connection<br><br>By example<br><br><br> Set myConn = CreateObject(ADODB.Connection)<br><br>At this moment we are access to the method<br><br> myConn.BeginTrans<br><br>for begin the transaction<br><br>When we have maked that we want to do<br> ( Acces to de Database, Update records, Delete Records,....)<br><br>if all is OK we will do<br><br> myConn.CommitTrans<br><br>for end the transaction. But if exists some errors or problems, we can make<br><br> myConn.RollbackTrans<br><br><br><br>I hope helped you.<br><br>Regards.<br><br>Jordi<br><br><br><br>