Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
pdo_sqlite /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
bug33841.phpt
690
B
-rw-rw-r--
2022-10-31 11:36
bug35336.phpt
570
B
-rw-rw-r--
2022-10-31 11:36
bug43831.phpt
1.02
KB
-rw-rw-r--
2022-10-31 11:36
bug44327_2.phpt
1007
B
-rw-rw-r--
2022-10-31 11:36
bug44327_3.phpt
616
B
-rw-rw-r--
2022-10-31 11:36
bug46139.phpt
1004
B
-rw-rw-r--
2022-10-31 11:36
bug46542.phpt
392
B
-rw-rw-r--
2022-10-31 11:36
bug48773.phpt
804
B
-rw-rw-r--
2022-10-31 11:36
bug50728.phpt
307
B
-rw-rw-r--
2022-10-31 11:36
bug52487.phpt
422
B
-rw-rw-r--
2022-10-31 11:36
bug60104.phpt
381
B
-rw-rw-r--
2022-10-31 11:36
bug66033.phpt
746
B
-rw-rw-r--
2022-10-31 11:36
bug70221.phpt
562
B
-rw-rw-r--
2022-10-31 11:36
bug70862.phpt
895
B
-rw-rw-r--
2022-10-31 11:36
bug78192.phpt
1.05
KB
-rw-rw-r--
2022-10-31 11:36
bug79664.phpt
582
B
-rw-rw-r--
2022-10-31 11:36
bug_42589.phpt
677
B
-rw-rw-r--
2022-10-31 11:36
bug_63916-2.phpt
790
B
-rw-rw-r--
2022-10-31 11:36
bug_63916.phpt
768
B
-rw-rw-r--
2022-10-31 11:36
bug_64705.phpt
415
B
-rw-rw-r--
2022-10-31 11:36
common.phpt
221
B
-rw-rw-r--
2022-10-31 11:36
debugdumpparams_001.phpt
619
B
-rw-rw-r--
2022-10-31 11:36
pdo_fetch_func_001.phpt
3.35
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createaggregate.phpt
710
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createaggregate_002.phpt
489
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createcollation.phpt
907
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction.phpt
759
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction_002.phpt
434
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_createfunction_with_flags.phpt
881
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_extendederror_attr.phpt
2.31
KB
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_get_attribute.phpt
337
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_lastinsertid.phpt
679
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_open_flags.phpt
934
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_statement_getattribute.phpt
447
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_tostring_exception.phpt
868
B
-rw-rw-r--
2022-10-31 11:36
pdo_sqlite_transaction.phpt
585
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- PDO SQLite Bug #78192 SegFault when reuse statement after schema change --SKIPIF-- <?php if (!extension_loaded('pdo_sqlite')) print 'skip not loaded'; ?> --FILE-- <?php $connection = new \PDO('sqlite::memory:'); $connection->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); $connection->query('CREATE TABLE user (id INTEGER PRIMARY KEY NOT NULL, name VARCHAR(255) NOT NULL)'); $stmt = $connection->prepare('INSERT INTO user (id, name) VALUES(:id, :name)'); $stmt->execute([ 'id' => 10, 'name' => 'test', ]); $stmt = $connection->prepare('SELECT * FROM user WHERE id = :id'); $stmt->execute(['id' => 10]); var_dump($stmt->fetchAll(\PDO::FETCH_ASSOC)); $connection->query('ALTER TABLE user ADD new_col VARCHAR(255)'); $stmt->execute(['id' => 10]); var_dump($stmt->fetchAll(\PDO::FETCH_ASSOC)); --EXPECT-- array(1) { [0]=> array(2) { ["id"]=> string(2) "10" ["name"]=> string(4) "test" } } array(1) { [0]=> array(3) { ["id"]=> string(2) "10" ["name"]=> string(4) "test" ["new_col"]=> NULL } }