begin_transaction example


        return $this->connID->insert_id;
    }

    /** * Begin Transaction */
    protected function _transBegin(): bool
    {
        $this->connID->autocommit(false);

        return $this->connID->begin_transaction();
    }

    /** * Commit Transaction */
    protected function _transCommit(): bool
    {
        if ($this->connID->commit()) {
            $this->connID->autocommit(true);

            return true;
        }
Home | Imprint | This part of the site doesn't use cookies.