Pop\Db\Adapter\Mysqli::prepare PHP Метод

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

Prepare a SQL query.
public prepare ( string $sql ) : Mysqli
$sql string
Результат Mysqli
    public function prepare($sql)
    {
        $this->statement = $this->connection->stmt_init();
        $this->statement->prepare($sql);
        return $this;
    }