Home
last modified time | relevance | path

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

/php-src/ext/pdo_sqlite/tests/subclasses/
H A Dpdo_sqlite_constants.phpt9 var_dump(Pdo\Sqlite::DETERMINISTIC);
10 var_dump(Pdo\Sqlite::ATTR_OPEN_FLAGS);
11 var_dump(Pdo\Sqlite::OPEN_READONLY);
12 var_dump(Pdo\Sqlite::OPEN_READWRITE);
13 var_dump(Pdo\Sqlite::OPEN_CREATE);
14 var_dump(Pdo\Sqlite::ATTR_READONLY_STATEMENT);
15 var_dump(Pdo\Sqlite::ATTR_EXTENDED_RESULT_CODES);
H A Dpdo_sqlite_createaggregate_arg_error.phpt2 Test Pdo\Sqlite::createAggregate() arguments error
10 $db = new Pdo\Sqlite('sqlite::memory:');
57 Pdo\Sqlite::createAggregate(): Argument #1 ($name) must be of type string, null given
58 Pdo\Sqlite::createAggregate(): Argument #1 ($name) must be of type string, null given
59 Pdo\Sqlite::createAggregate(): Argument #1 ($name) must be of type string, null given
60 Pdo\Sqlite::createAggregate(): Argument #2 ($step) must be a valid callback, no array or string giv…
61 Pdo\Sqlite::createAggregate(): Argument #3 ($finalize) must be a valid callback, no array or string…
62 Pdo\Sqlite::createAggregate(): Argument #4 ($numArgs) must be of type int, null given
H A Dpdo_sqlite_createafunction_arg_error.phpt2 Test Pdo\Sqlite::createFunction() arguments error
10 $db = new Pdo\Sqlite('sqlite::memory:');
45 Pdo\Sqlite::createFunction(): Argument #1 ($function_name) must be of type string, null given
46 Pdo\Sqlite::createFunction(): Argument #2 ($callback) must be a valid callback, no array or string …
47 Pdo\Sqlite::createFunction(): Argument #3 ($num_args) must be of type int, null given
48 Pdo\Sqlite::createFunction(): Argument #4 ($flags) must be of type int, null given
H A Dpdosqlite_load_extension_failure.phpt2 Pdo\Sqlite load extension
7 if (!method_exists(Pdo\Sqlite::class, "loadExtension")) {
14 $db = Pdo\Sqlite::connect('sqlite::memory:');
15 if (!$db instanceof Pdo\Sqlite) {
16 echo "Wrong class type. Should be Pdo\Sqlite but is " . get_class($db) . "\n";
H A Dpdo_sqlite_createcollation_arg_error.phpt2 Test Pdo\Sqlite::createCollation() arguments error
10 $db = new Pdo\Sqlite('sqlite::memory:');
33 Pdo\Sqlite::createCollation(): Argument #1 ($name) must be of type string, null given
34 Pdo\Sqlite::createCollation(): Argument #2 ($callback) must be a valid callback, no array or string…
H A Dpdosqlite_002.phpt2 Pdo\Sqlite create through PDO::connect and function define.
9 if (!$db instanceof Pdo\Sqlite) {
10 echo "Wrong class type. Should be Pdo\Sqlite but is " . get_class($db) . "\n";
17 $db->createFunction('testing', function($v) { return strtolower($v); }, 1, Pdo\Sqlite::DETERMINISTI…
H A Dpdosqlite_001.phpt2 Pdo\Sqlite basic
8 $db = new Pdo\Sqlite('sqlite::memory:');
15 $db->createFunction('testing', function($v) { return strtolower($v); }, 1, Pdo\Sqlite::DETERMINISTI…
H A Dpdo_sqlite_createaggregate_002.phpt9 $pdo = new Pdo\Sqlite('sqlite::memory:');
24 Pdo\Sqlite::createAggregate(): Argument #2 ($step) must be a valid callback, function "a" not found…
25 Pdo\Sqlite::createAggregate(): Argument #3 ($finalize) must be a valid callback, function "" not fo…
H A Dgc.phpt2 GC support for PDO Sqlite driver data
17 if (!$obj->a instanceof Pdo\Sqlite) {
18 echo "Wrong class type. Should be Pdo\Sqlite but is " . get_class($obj->a) . "]\n";
H A Dpdosqlite_003.phpt2 Pdo\Sqlite load extension
7 if (!method_exists(Pdo\Sqlite::class, "loadExtension")) {
27 if (!$db instanceof Pdo\Sqlite) {
28 echo "Wrong class type. Should be Pdo\Sqlite but is " . get_class($db) . "\n";
H A Dgh_16131.phpt27 …() cannot be used for connecting to the "sqlite" driver, either call Pdo\Sqlite::__construct() or …
28 MyPgsql::__construct() cannot be used for connecting to the "sqlite" driver, either call Pdo\Sqlite
H A Dpdo_sqlite_createafunction_trampoline.phpt2 Test Pdo\Sqlite::createFunction() trampoline callback
8 $db = new Pdo\Sqlite('sqlite::memory:');
H A Dpdo_sqlite_createfunction_with_flags.phpt12 $db = new Pdo\Sqlite('sqlite::memory:');
16 $db->createFunction('testing', function($v) { return strtolower($v); }, 1, Pdo\Sqlite::DETERMINISTI…
H A Dpdosqlite_004_blobopen.phpt2 Pdo\Sqlite::blobOpen stream test
8 $db = new Pdo\Sqlite('sqlite::memory:');
35 $stream = $db->openBlob('test', 'data', 1, 'main', Pdo\Sqlite::OPEN_READWRITE);
H A Dpdo_sqlite_createcollation_trampoline.phpt2 Test Pdo\Sqlite::createCollation() trampoline callback
8 $db = new Pdo\Sqlite('sqlite::memory:');
H A Dpdo_sqlite_createaggregate_trampoline.phpt2 Test Pdo\Sqlite::createAggregate() trampoline callback
8 $db = new Pdo\Sqlite('sqlite::memory:');
H A Dpdosqlite_006.phpt8 class MyPdoSqlite extends Pdo\Sqlite {}
H A Dpdosqlite_005.phpt17 Pdo\Pgsql::connect() cannot be used for connecting to the "sqlite" driver, either call Pdo\Sqlite::…
H A Dpdosqlite_007.phpt18 MyPDO::connect() cannot be used for connecting to the "sqlite" driver, either call Pdo\Sqlite::conn…
H A Dpdo_sqlite_createaggregate.phpt9 $db = new Pdo\Sqlite('sqlite::memory:');
H A Dpdo_sqlite_createcollation.phpt9 $db = new Pdo\Sqlite('sqlite::memory:');
/php-src/ext/pdo_sqlite/
H A Dpdo_sqlite.stub.php11 class Sqlite extends \PDO class
64 int $flags = \Pdo\Sqlite::OPEN_READONLY
/php-src/ext/pdo_sqlite/tests/
H A Dgc.phpt2 GC support for PDO Sqlite driver data
H A Dpdo_sqlite_tostring_exception.phpt2 __toString() exception during PDO Sqlite parameter binding
/php-src/ext/phar/tests/files/
H A Dpear2coverage.phar15 ���Sqlite.php0X����ib0X���{�,����������SourceFile/PerTest.php�����ib����R������� ���index.phpF…
17 use PEAR2\Pyrus\Developer\CoverageAnalyzer\Sqlite;
503 $this->sqlite = new Sqlite($codepath, $db);
762 $this->sqlite = new Sqlite($db, $codepath, $testpath);
925 class Sqlite

Completed in 23 milliseconds