1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/sqlite/tests/bug28112.phpt
Antony Dovgal 632e571642 MFB: add missing skipif conditions, fix existing ones
add one missing test
2005-12-21 11:43:24 +00:00

17 lines
412 B
PHP
Executable File

--TEST--
Bug #28112 (sqlite_query() crashing apache on malformed query)
--SKIPIF--
<?php if (!extension_loaded("sqlite")) print "skip"; ?>
--FILE--
<?php
if (!($db = sqlite_open(":memory:", 666, $error))) die ("Couldn't open the database");
sqlite_query($db, "create table frob (foo INTEGER PRIMARY KEY, bar text);");
$res = @sqlite_array_query($db, "");
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
===DONE===