Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4115480
sqlite3.phan_php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
sqlite3.phan_php
View Options
<?php
// These stubs were generated by the phan stub generator.
// @phan-stub-for-extension sqlite3@8.0.28
namespace {
class SQLite3 {
// constants
const OK = 0;
const DENY = 1;
const IGNORE = 2;
const CREATE_INDEX = 1;
const CREATE_TABLE = 2;
const CREATE_TEMP_INDEX = 3;
const CREATE_TEMP_TABLE = 4;
const CREATE_TEMP_TRIGGER = 5;
const CREATE_TEMP_VIEW = 6;
const CREATE_TRIGGER = 7;
const CREATE_VIEW = 8;
const DELETE = 9;
const DROP_INDEX = 10;
const DROP_TABLE = 11;
const DROP_TEMP_INDEX = 12;
const DROP_TEMP_TABLE = 13;
const DROP_TEMP_TRIGGER = 14;
const DROP_TEMP_VIEW = 15;
const DROP_TRIGGER = 16;
const DROP_VIEW = 17;
const INSERT = 18;
const PRAGMA = 19;
const READ = 20;
const SELECT = 21;
const TRANSACTION = 22;
const UPDATE = 23;
const ATTACH = 24;
const DETACH = 25;
const ALTER_TABLE = 26;
const REINDEX = 27;
const ANALYZE = 28;
const CREATE_VTABLE = 29;
const DROP_VTABLE = 30;
const FUNCTION = 31;
const SAVEPOINT = 32;
const COPY = 0;
// methods
public function __construct(string $filename, int $flags = 6, string $encryptionKey = '') {}
public function open(string $filename, int $flags = 6, string $encryptionKey = '') {}
public function close() {}
public static function version() {}
public function lastInsertRowID() {}
public function lastErrorCode() {}
public function lastExtendedErrorCode() {}
public function lastErrorMsg() {}
public function changes() {}
public function busyTimeout(int $milliseconds) {}
public function loadExtension(string $name) {}
public function backup(\SQLite3 $destination, string $sourceDatabase = 'main', string $destinationDatabase = 'main') {}
public static function escapeString(string $string) {}
public function prepare(string $query) {}
public function exec(string $query) {}
public function query(string $query) {}
public function querySingle(string $query, bool $entireRow = false) {}
public function createFunction(string $name, callable $callback, int $argCount = -1, int $flags = 0) {}
public function createAggregate(string $name, callable $stepCallback, callable $finalCallback, int $argCount = -1) {}
public function createCollation(string $name, callable $callback) {}
public function openBlob(string $table, string $column, int $rowid, string $database = 'main', int $flags = \SQLITE3_OPEN_READONLY) {}
public function enableExceptions(bool $enable = false) {}
public function enableExtendedResultCodes(bool $enable = true) {}
public function setAuthorizer(?callable $callback) {}
}
class SQLite3Result {
// methods
private function __construct() {}
public function numColumns() {}
public function columnName(int $column) {}
public function columnType(int $column) {}
public function fetchArray(int $mode = \SQLITE3_BOTH) {}
public function reset() {}
public function finalize() {}
}
class SQLite3Stmt {
// methods
private function __construct(\SQLite3 $sqlite3, string $query) {}
public function bindParam(int|string $param, mixed &$var, int $type = \SQLITE3_TEXT) {}
public function bindValue(int|string $param, mixed $value, int $type = \SQLITE3_TEXT) {}
public function clear() {}
public function close() {}
public function execute() {}
public function getSQL(bool $expand = false) {}
public function paramCount() {}
public function readOnly() {}
public function reset() {}
}
const SQLITE3_ASSOC = 1;
const SQLITE3_BLOB = 4;
const SQLITE3_BOTH = 3;
const SQLITE3_FLOAT = 2;
const SQLITE3_INTEGER = 1;
const SQLITE3_NULL = 5;
const SQLITE3_NUM = 2;
const SQLITE3_OPEN_CREATE = 4;
const SQLITE3_OPEN_READONLY = 1;
const SQLITE3_OPEN_READWRITE = 2;
const SQLITE3_TEXT = 3;
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 00:53 (1 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ed/2f/ade1a560310a02804c428aeee73e
Default Alt Text
sqlite3.phan_php (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment