SQLite3
PHP Manual

Die SQLite3-Klasse

(PHP 5 >= 5.3.0, PHP 7)

Einführung

Eine Klasse, die eine Verbindung zu SQLite-3-Datenbanken zur Verfügung stellt

Klassenbeschreibung

SQLite3 {
/* Methoden */
public bool busyTimeout ( int $msecs )
public int changes ( void )
public bool close ( void )
public __construct ( string $Dateiname [, int $Schalter [, string $Verschlüsselungs-Phrase ]] )
public bool createAggregate ( string $name , mixed $step_callback , mixed $final_callback [, int $argument_count = -1 ] )
public bool createCollation ( string $name , callable $callback )
public bool createFunction ( string $name , mixed $callback [, int $argument_count = -1 ] )
public static 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 void open ( string $filename [, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE [, string $encryption_key ]] )
public SQLite3Stmt prepare ( string $query )
public SQLite3Result query ( string $query )
public mixed querySingle ( string $query [, bool $entire_row = false ] )
public static array version ( void )
}

Inhaltsverzeichnis


SQLite3
PHP Manual