Categories > TinyButStrong general >

TBSSql And Transactions

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: Trent
Date: 2008-06-15
Time: 06:41

TBSSql And Transactions

Does TBSSql support transactions?  If so, can you give me an example of how do this? 
By: Skrol29
Date: 2008-06-15
Time: 13:44

Re: TBSSql And Transactions

Hi,

For most of databases, transactions are managed using SQL commands.
$Db->Execute("START TRANSACTION");
...
$Db->Execute("COMMIT");
By: Trent
Date: 2008-06-15
Time: 18:28

Re: TBSSql And Transactions

Thanks for the quick response.  I've been looking into using transactions and I just wasn't for sure how to go about it using TBSSql.  Thanks again.