CI_DB_mysqli_driver::_trans_begin PHP Method

_trans_begin() protected method

Begin Transaction
protected _trans_begin ( ) : boolean
return boolean
    protected function _trans_begin()
    {
        $this->conn_id->autocommit(FALSE);
        return is_php('5.5') ? $this->conn_id->begin_transaction() : $this->simple_query('START TRANSACTION');
        // can also be BEGIN or BEGIN WORK
    }