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;
    }