SQLite3
PHP 手册

The SQLite3 class

简介

Description of the class.

Class synopsis

SQLite3
SQLite3 {
/* Methods */
public int changes ( void )
public bool close ( void )
__construct ( string $filename [, int $flags [, string $encryption_key ]] )
public bool createAggregate ( string $name , mixed $step_callback , mixed $final_callback [, int $argument_count=-1 ] )
public bool createFunction ( string $name , mixed $callback [, int $argument_count=-1 ] )
public string escapeString ( string $value )
public bool exec ( string $query )
public int lastErrorCode ( void )
public string lastErrorMsg ( void )
public int lastInsertRowID ( void )
public bool loadExtension ( string $shared_library )
public bool open ( string $filename [, int $flags=SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE [, string $encryption_key ]] )
public SQLite3_stmt prepare ( string $query )
public SQLite3_result query ( string $query )
public mixed querySingle ( string $query [, bool $entire_row=false ] )
public array version ( void )
}

Table of Contents


SQLite3
PHP 手册