/php-src/ext/pdo_sqlite/tests/subclasses/ |
H A D | pdo_sqlite_constants.phpt | 9 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 D | pdo_sqlite_createaggregate_arg_error.phpt | 2 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 D | pdo_sqlite_createafunction_arg_error.phpt | 2 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 D | pdosqlite_load_extension_failure.phpt | 2 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 D | pdo_sqlite_createcollation_arg_error.phpt | 2 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 D | pdosqlite_002.phpt | 2 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 D | pdosqlite_001.phpt | 2 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 D | pdo_sqlite_createaggregate_002.phpt | 9 $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 D | gc.phpt | 2 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 D | pdosqlite_003.phpt | 2 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 D | gh_16131.phpt | 27 …() 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 D | pdo_sqlite_createafunction_trampoline.phpt | 2 Test Pdo\Sqlite::createFunction() trampoline callback 8 $db = new Pdo\Sqlite('sqlite::memory:');
|
H A D | pdo_sqlite_createfunction_with_flags.phpt | 12 $db = new Pdo\Sqlite('sqlite::memory:'); 16 $db->createFunction('testing', function($v) { return strtolower($v); }, 1, Pdo\Sqlite::DETERMINISTI…
|
H A D | pdosqlite_004_blobopen.phpt | 2 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 D | pdo_sqlite_createcollation_trampoline.phpt | 2 Test Pdo\Sqlite::createCollation() trampoline callback 8 $db = new Pdo\Sqlite('sqlite::memory:');
|
H A D | pdo_sqlite_createaggregate_trampoline.phpt | 2 Test Pdo\Sqlite::createAggregate() trampoline callback 8 $db = new Pdo\Sqlite('sqlite::memory:');
|
H A D | pdosqlite_006.phpt | 8 class MyPdoSqlite extends Pdo\Sqlite {}
|
H A D | pdosqlite_005.phpt | 17 Pdo\Pgsql::connect() cannot be used for connecting to the "sqlite" driver, either call Pdo\Sqlite::…
|
H A D | pdosqlite_007.phpt | 18 MyPDO::connect() cannot be used for connecting to the "sqlite" driver, either call Pdo\Sqlite::conn…
|
H A D | pdo_sqlite_createaggregate.phpt | 9 $db = new Pdo\Sqlite('sqlite::memory:');
|
H A D | pdo_sqlite_createcollation.phpt | 9 $db = new Pdo\Sqlite('sqlite::memory:');
|
/php-src/ext/pdo_sqlite/ |
H A D | pdo_sqlite.stub.php | 11 class Sqlite extends \PDO class 64 int $flags = \Pdo\Sqlite::OPEN_READONLY
|
/php-src/ext/pdo_sqlite/tests/ |
H A D | gc.phpt | 2 GC support for PDO Sqlite driver data
|
H A D | pdo_sqlite_tostring_exception.phpt | 2 __toString() exception during PDO Sqlite parameter binding
|
/php-src/ext/phar/tests/files/ |
H A D | pear2coverage.phar | 15 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
|