1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-13 09:34:30 +02:00

Removed inTransaction definitely (BC break!)

This commit is contained in:
David Grudl
2010-05-19 18:33:28 +02:00
parent 8b4cd4e689
commit d19afd5790
12 changed files with 1 additions and 119 deletions

View File

@@ -184,7 +184,7 @@ class DibiOdbcDriver extends DibiObject implements IDibiDriver
*/
public function inTransaction()
{
return (bool) odbc_autocommit($this->connection);
return !odbc_autocommit($this->connection);
}