in reply to Re: How to safely test if a database handle is capable of transactions?
in thread How to safely test if a database handle is capable of transactions?
?can be written more reliably aseval { local $dbh->{AutoCommit} = 0; }; $self->{_can_do_transactions} = $@ ? 0 : 1;$self->{_can_do_transactions} = eval { local $dbh->{AutoCommit} = 0; 1 };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to safely test if a database handle is capable of transactions?
by ikegami (Patriarch) on Nov 19, 2008 at 21:50 UTC |