We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c4b1e0 commit 9439cfcCopy full SHA for 9439cfc
ext/pdo_sqlite/tests/bug_42589.phpt
@@ -3,6 +3,13 @@ PDO SQLite Feature Request #42589 (getColumnMeta() should also return table name
3
--EXTENSIONS--
4
pdo
5
pdo_sqlite
6
+--SKIPIF--
7
+<?php
8
+$db = new PDO("sqlite::memory:");
9
+$options = $db->query('PRAGMA compile_options')->fetchAll(PDO::FETCH_COLUMN);
10
+if(!in_array('ENABLE_COLUMN_METADATA', $options, true))
11
+ die("skip sqlite3 must be compiled with SQLITE_ENABLE_COLUMN_METADATA");
12
+?>
13
--FILE--
14
<?php
15
$db = new PDO("sqlite::memory:");
0 commit comments