Home
last modified time | relevance | path

Searched refs:SQLite3 (Results 1 – 25 of 87) sorted by relevance

1234

/PHP-8.2/ext/sqlite3/
H A Dsqlite3_arginfo.h168 ZEND_METHOD(SQLite3, open);
169 ZEND_METHOD(SQLite3, close);
170 ZEND_METHOD(SQLite3, version);
175 ZEND_METHOD(SQLite3, changes);
176 ZEND_METHOD(SQLite3, busyTimeout);
181 ZEND_METHOD(SQLite3, backup);
184 ZEND_METHOD(SQLite3, prepare);
185 ZEND_METHOD(SQLite3, exec);
186 ZEND_METHOD(SQLite3, query);
187 ZEND_METHOD(SQLite3, querySingle);
[all …]
/PHP-8.2/ext/sqlite3/tests/
H A Dsqlite3_21_security.phpt2 SQLite3 open_basedir checks
15 $db = new SQLite3($directory . $file);
22 $db = new SQLite3('../bad' . $file);
31 object(SQLite3)#%d (0) {
36 Warning: SQLite3::__construct(): open_basedir restriction in effect. File(%s) is not within the all…
39 #0 %ssqlite3_21_security.php(%d): SQLite3->__construct('%s')
H A Dsqlite3_enable_exceptions.phpt2 SQLite3::enableExceptions test
11 $db = new SQLite3(':memory:');
28 Deprecated: SQLite3::enableExceptions(): Use of warnings for SQLite3 is deprecated in %s
31 Warning: SQLite3::query(): no such table: non_existent_table in %s on line %d
H A Dsqlite3_trampoline_setauthorizer.phpt2 SQLite3 user authorizer trampoline callback
11 if ($arguments[0] == SQLite3::SELECT) {
12 return SQLite3::OK;
15 return SQLite3::DENY;
21 $db = new SQLite3(':memory:');
H A Dsqlite3_33_load_extension_param.phpt2 SQLite3::loadExtension with empty extension test
12 if (!method_exists('SQLite3', 'loadExtension')) {
19 $db = new SQLite3(':memory:');
29 string(61) "SQLite3::loadExtension(): Argument #1 ($name) cannot be empty"
H A Dsqlite3_34_load_extension_ext_dir.phpt2 SQLite3::loadExtension with disabled extensions
10 if (!method_exists('SQLite3', 'loadExtension')) {
17 $db = new SQLite3(':memory:');
27 Warning: SQLite3::loadExtension(): SQLite Extensions are disabled in %s on line %d
H A Dsqlite3_31_changes.phpt2 SQLite3::changes (parameters) tests
10 $db = new SQLite3(':memory:');
16 object(SQLite3)#1 (0) {
H A Dbug72571.phpt2 Bug #72571 (SQLite3::bindValue, SQLite3::bindParam crash)
7 $db = new SQLite3(':memory:');
H A Dsqlite3_01_open-mb.phpt2 SQLite3::open/close tests
9 $db = new SQLite3($db_file);
19 object(SQLite3)#%d (0) {
H A Dsqlite3_02_open.phpt2 SQLite3::open test, testing for function parameters
12 $db = new SQLite3();
19 string(59) "SQLite3::__construct() expects at least 1 argument, 0 given"
H A Dbug81742.phpt2 Bug #81742 (open_basedir bypass in SQLite3 by using url encoded file)
9 $db = new SQLite3(':memory:');
13 Warning: SQLite3::query(): not authorized in %s on line %d
H A Dsqlite3_defensive.phpt2 SQLite3 defensive mode ini setting
8 if (SQLite3::version()['versionNumber'] < 3026000) {
18 $db = new SQLite3(':memory:');
38 Warning: SQLite3::querySingle(): Unable to prepare statement: table sqlite_master may not be modifi…
H A Dsqlite3_33_createAggregate_notcallable.phpt2 SQLite3::createAggregate() Test whether a supplied PHP function is valid when using in an aggregate…
14 $db = new SQLite3(':memory:');
35 SQLite3::createAggregate(): Argument #2 ($stepCallback) must be a valid callback, function "aggrega…
36 SQLite3::createAggregate(): Argument #3 ($finalCallback) must be a valid callback, function "aggreg…
H A Dsqlite3_prepare_faultystmt.phpt2 SQLite3::prepare test, testing for faulty statement
10 $db = new SQLite3(':memory:');
19 Warning: SQLite3::prepare(): Unable to prepare statement: no such table: bar in %s on line %d
H A Dsqlite3_17_version.phpt2 SQLite3::version()
7 print_r(SQLite3::version());
H A Dsqlite3_15_open_error.phpt2 SQLite3::open error test
23 $db = new SQLite3($unreadable);
33 #0 %ssqlite3_15_open_error.php(%d): SQLite3->__construct('%s')
H A Dsqlite3_01_open.phpt2 SQLite3::open/close tests
15 object(SQLite3)#%d (0) {
H A Dsqlite3_40_setauthorizer.phpt2 SQLite3 user authorizer callback
8 $db = new SQLite3(':memory:');
12 if ($action == SQLite3::SELECT) {
13 return SQLite3::OK;
16 return SQLite3::DENY;
38 $constants = (new ReflectionClass('SQLite3'))->getConstants();
H A Dsqlite3_prepare_001.phpt2 SQLite3 - memory leak on SQLite3Result and SQLite3Stmt
9 $class = new SQLite3(':memory:');
H A Dsqlite3_open_empty_string.phpt2 SQLite3::open test with empty string argument via the constructor
10 $db = new SQLite3('');
H A Dbug73068.phpt2 Bug #73068 SQLite3 may fail to DELETE
7 $version = SQLite3::version()['versionNumber'];
13 $db = new \SQLite3(':memory:') ;
H A Dsqlite3_15_open_error-win.phpt2 SQLite3::open error test
23 $db = new SQLite3($unreadable);
36 #0 %ssqlite3_15_open_error-win.php(%d): SQLite3->__construct('%s')
H A Dsqlite3_rename_column.phpt2 SQLite3 - rename column while SQLite3Result is open
7 if (SQLite3::version()['versionNumber'] < 3025000) {
14 $db = new SQLite3(':memory:');
H A Dsqlite3_prepare_with_empty_string.phpt2 SQLite3::prepare test with empty string argument
10 $db = new SQLite3(':memory:');
H A Dsqlite3_38_backup.phpt2 SQLite3::backup test
17 $db2 = new SQLite3(':memory:');
32 $db2 = new SQLite3(':memory:');
57 Warning: SQLite3::backup(): Backup failed: source database is busy in %s on line %d

Completed in 31 milliseconds

1234