SQLite3Stmt 클래스

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


소개

SQLite 3 확장에 대해 준비된 명령문을 처리하는 클래스입니다.


클래스 개요

                  
class SQLite3Stmt {
  /* Methods */
  private __construct(SQLite3 $sqlite3, string $query)
  public bindParam(string|int $param, mixed &$var, int $type = SQLITE3_TEXT): bool
  public bindValue(string|int $param, mixed $value, int $type = SQLITE3_TEXT): bool
  public clear(): bool
  public close(): bool
  public execute(): SQLite3Result|false
  public getSQL(bool $expand = false): string|false
  public paramCount(): int
  public readOnly(): bool
  public reset(): bool
}
                  
                

목차