1--TEST--
2SQLite3::prepare test with empty string argument
3--CREDITS--
4Thijs Feryn <thijs@feryn.eu>
5#TestFest PHPBelgium 2009
6--SKIPIF--
7<?php require_once(__DIR__ . '/skipif.inc'); ?>
8--FILE--
9<?php
10$db = new SQLite3(':memory:');
11var_dump($db->prepare(''));
12echo "Done\n";
13?>
14--EXPECT--
15bool(false)
16Done
17