The SQLite3Stmt class

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

Introduction

A class that handles prepared statements for the SQLite 3 extension.

Class synopsis

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
}

Table of Contents

To Top