From: Operating system: linux PHP version: 5.3SVN-2010-12-03 (SVN) Package: SQLite related Bug Type: Bug Bug description:sqlite3 columnType() returns SQLITE3_NULL on bad column_number
Description: ------------ The SQLite3Result::columnType() method returns SQLITE3_NULL (5) when column_number exceeds the column count. It seems more appropriate for it to return FALSE. Test script: --------------- $db = new SQLite3(':memory:'); $db->exec('CREATE TABLE test (whatever INTEGER)'); $db->exec('INSERT INTO test (whatever) VALUES (1)'); $result = $db->query('SELECT * FROM test'); while ($row = $result->fetchArray(SQLITE3_NUM)) { var_dump($result->columnType(0)); // int(1) [SQLITE3_INTEGER] // Seems returning false is more appropriate. var_dump($result->columnType(3)); // int(5) [SQLITE3_NULL] } $result->finalize(); $db->close(); echo "Done\n"; Expected result: ---------------- int(1) bool(false) Done Actual result: -------------- int(1) int(5) Done -- Edit bug report at http://bugs.php.net/bug.php?id=53464&edit=1 -- Try a snapshot (PHP 5.2): http://bugs.php.net/fix.php?id=53464&r=trysnapshot52 Try a snapshot (PHP 5.3): http://bugs.php.net/fix.php?id=53464&r=trysnapshot53 Try a snapshot (trunk): http://bugs.php.net/fix.php?id=53464&r=trysnapshottrunk Fixed in SVN: http://bugs.php.net/fix.php?id=53464&r=fixed Fixed in SVN and need be documented: http://bugs.php.net/fix.php?id=53464&r=needdocs Fixed in release: http://bugs.php.net/fix.php?id=53464&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=53464&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=53464&r=needscript Try newer version: http://bugs.php.net/fix.php?id=53464&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=53464&r=support Expected behavior: http://bugs.php.net/fix.php?id=53464&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=53464&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=53464&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=53464&r=globals PHP 4 support discontinued: http://bugs.php.net/fix.php?id=53464&r=php4 Daylight Savings: http://bugs.php.net/fix.php?id=53464&r=dst IIS Stability: http://bugs.php.net/fix.php?id=53464&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=53464&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=53464&r=float No Zend Extensions: http://bugs.php.net/fix.php?id=53464&r=nozend MySQL Configuration Error: http://bugs.php.net/fix.php?id=53464&r=mysqlcfg