MySQL Innodb에서 transaction start 변수 설정이 빠진 문제 수정. by vhain님

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3627 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-01-31 09:48:15 +00:00
parent 47f5c9a1f8
commit d0696e472c

View file

@ -121,6 +121,7 @@
**/
function begin() {
if(!$this->isConnected() || $this->transaction_started) return;
$this->transaction_started = true;
$this->_query("begin");
}