Chris Mason wrote:
On Thu, 2003-10-16 at 10:15, Matthew T. O'Connor wrote:
On Thu, 2003-10-16 at 09:57, Chris Mason wrote:
Ok, here's a patch for dbmail 1.2 cvs that implements the transaction
begin/commit for mysql during pipe.c:insert_messages, and the imap
copy/append message commands.
Great, dbmail should be using transactions, why use a database if you
don't use transactions.
I beleive this is a non issue, suppose the following function
start_transaction(){
if ( transactions_supported) {
/* Issue SQL start transaction code */
};
};
/Magnus