Searched refs:SQLite3 (Results 1 – 25 of 85) sorted by relevance
1234
/PHP-8.2/ext/sqlite3/ |
H A D | sqlite3_arginfo.h | 168 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 D | sqlite3_21_security.phpt | 2 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 D | sqlite3_34_load_extension_ext_dir.phpt | 2 SQLite3::loadExtension with disabled extensions 10 if (!method_exists('SQLite3', 'loadExtension')) { 17 $db = new SQLite3(':memory:'); 27 Warning: SQLite3::loadExtension(): SQLite Extension are disabled in %s on line %d
|
H A D | sqlite3_33_load_extension_param.phpt | 2 SQLite3::loadExtension with empty extension test 12 if (!method_exists('SQLite3', 'loadExtension')) { 19 $db = new SQLite3(':memory:'); 29 Warning: SQLite3::loadExtension(): Empty string as an extension in %s on line %d
|
H A D | sqlite3_31_changes.phpt | 2 SQLite3::changes (parameters) tests 10 $db = new SQLite3(':memory:'); 16 object(SQLite3)#1 (0) {
|
H A D | bug72571.phpt | 2 Bug #72571 (SQLite3::bindValue, SQLite3::bindParam crash) 7 $db = new SQLite3(':memory:');
|
H A D | sqlite3_01_open-mb.phpt | 2 SQLite3::open/close tests 9 $db = new SQLite3($db_file); 19 object(SQLite3)#%d (0) {
|
H A D | sqlite3_02_open.phpt | 2 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 D | bug81742.phpt | 2 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 D | sqlite3_defensive.phpt | 2 SQLite3 defensive mode ini setting 8 if (SQLite3::version()['versionNumber'] < 3026000) { 18 $db = new SQLite3(':memory:'); 38 Warning: SQLite3::querySingle(): Unable to prepare statement: 1, table sqlite_master may not be mod…
|
H A D | sqlite3_33_createAggregate_notcallable.phpt | 2 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 D | sqlite3_prepare_faultystmt.phpt | 2 SQLite3::prepare test, testing for faulty statement 10 $db = new SQLite3(':memory:'); 19 Warning: SQLite3::prepare(): Unable to prepare statement: 1, no such table: bar in %s on line %d
|
H A D | sqlite3_17_version.phpt | 2 SQLite3::version() 7 print_r(SQLite3::version());
|
H A D | sqlite3_enable_exceptions.phpt | 2 SQLite3::enableExceptions test 11 $db = new SQLite3(':memory:'); 29 Warning: SQLite3::query(): no such table: non_existent_table in %s on line %d
|
H A D | sqlite3_15_open_error.phpt | 2 SQLite3::open error test 23 $db = new SQLite3($unreadable); 33 #0 %ssqlite3_15_open_error.php(%d): SQLite3->__construct('%s')
|
H A D | sqlite3_01_open.phpt | 2 SQLite3::open/close tests 15 object(SQLite3)#%d (0) {
|
H A D | sqlite3_prepare_001.phpt | 2 SQLite3 - memory leak on SQLite3Result and SQLite3Stmt 9 $class = new SQLite3(':memory:');
|
H A D | sqlite3_40_setauthorizer.phpt | 2 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 D | sqlite3_open_empty_string.phpt | 2 SQLite3::open test with empty string argument via the constructor 10 $db = new SQLite3('');
|
H A D | bug73068.phpt | 2 Bug #73068 SQLite3 may fail to DELETE 7 $version = SQLite3::version()['versionNumber']; 13 $db = new \SQLite3(':memory:') ;
|
H A D | sqlite3_15_open_error-win.phpt | 2 SQLite3::open error test 23 $db = new SQLite3($unreadable); 36 #0 %ssqlite3_15_open_error-win.php(%d): SQLite3->__construct('%s')
|
H A D | sqlite3_rename_column.phpt | 2 SQLite3 - rename column while SQLite3Result is open 7 if (SQLite3::version()['versionNumber'] < 3025000) { 14 $db = new SQLite3(':memory:');
|
H A D | sqlite3_prepare_with_empty_string.phpt | 2 SQLite3::prepare test with empty string argument 10 $db = new SQLite3(':memory:');
|
H A D | sqlite3_38_backup.phpt | 2 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
|
H A D | sqlite3_31_open.phpt | 2 SQLite3::re-initialize object tests 12 $db = new SQLite3(__DIR__ . '/db1.db');
|
Completed in 18 milliseconds
1234