SQLite3Stmt クラス

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

はじめに

SQLite 3 拡張モジュールのプリペアドステートメントを扱うクラスです。

クラス概要

classSQLite3Stmt {
private__construct(SQLite3$sqlite3, string$query)
publicbindParam(string|int$param, mixed&$var, int$type = SQLITE3_TEXT): bool
publicbindValue(string|int$param, mixed$value, int$type = SQLITE3_TEXT): bool
publicclear(): bool
publicclose(): bool
publicgetSQL(bool$expand = false): string|false
publicparamCount(): int
publicreadOnly(): bool
publicreset(): bool
}

目次

To Top