However, the underlying SQL itself will support transactions:
query << "START TRANSACTION";
query.execute();
query.reset();
query << // your update here
query.execute();
query.reset();
query << "COMMIT"
query.execute();
> -----Original Message-----
> From: Warren Young [mailto:mysqlpp@stripped]
> Sent: Tuesday, April 05, 2005 5:15 AM
> To: MySQL++ Mailing List
> Subject: Re: Transactions with MySQLPP
>
> Tim Murison wrote:
>
> > I was wondering if MySQLPP supports some kind of mechanism to do
> > transactions.
>
> Not right now. Patches thoughtfully considered.
>
> --
> MySQL++ Mailing List
> For list archives: http://lists.mysql.com/plusplus
> To unsubscribe:
> http://lists.mysql.com/plusplus?unsub=1
>
>