Dibi\Drivers\FirebirdDriver::query PHP Метод

query() публичный Метод

Executes the SQL query.
public query ( $sql ) : Dibi\ResultDriver | null
Результат Dibi\ResultDriver | null
    public function query($sql)
    {
        $resource = $this->inTransaction ? $this->transaction : $this->connection;
        $res = ibase_query($resource, $sql);
        if ($res === FALSE) {
            if (ibase_errcode() == self::ERROR_EXCEPTION_THROWN) {
                preg_match('/exception (\\d+) (\\w+) (.*)/i', ibase_errmsg(), $match);
                throw new Dibi\ProcedureException($match[3], $match[1], $match[2], $sql);
            } else {
                throw new Dibi\DriverException(ibase_errmsg(), ibase_errcode(), $sql);
            }
        } elseif (is_resource($res)) {
            return $this->createResultDriver($res);
        }
    }