Zeile 8 | Zeile 8 |
---|
* */
|
* */
|
class DB_SQLite
| class DB_SQLite implements DB_Base
|
{ /** * The title of this layer.
| { /** * The title of this layer.
|
Zeile 153 | Zeile 153 |
---|
* @param boolean 1 if hide errors, 0 if not. * @return resource The query data. */
|
* @param boolean 1 if hide errors, 0 if not. * @return resource The query data. */
|
function query($string, $hide_errors=0)
| function query($string, $hide_errors=0, $write_query=0)
|
{ global $pagestarttime, $db, $mybb;
| { global $pagestarttime, $db, $mybb;
|
Zeile 287 | Zeile 287 |
---|
* @param constant The type of array to return. * @return array The array of results. */
|
* @param constant The type of array to return. * @return array The array of results. */
|
function fetch_array($query)
| function fetch_array($query, $resulttype=0)
|
{ $array = $this->db->fetch_array($query); return $array;
| { $array = $this->db->fetch_array($query); return $array;
|
Zeile 471 | Zeile 471 |
---|
}
/**
|
}
/**
|
* Lists all functions in the database.
| * Lists all tables in the database.
|
* * @param string The database name. * @param string Prefix of the table (optional)
| * * @param string The database name. * @param string Prefix of the table (optional)
|