(No version information available, might only be in SVN)
Introduction
A class that interfaces SQLite 3 databases.
Class synopsis
SQLite3
{
public bool close
(
void
)
public __construct
(
string $filename
[,
int $flags
[,
string $encryption_key
]] )
public bool exec
(
string $query
)
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
] )
}