summaryrefslogtreecommitdiff
path: root/ext/sqlite3/tests/sqlite3_exec_wrongparams.phpt
blob: c3af18865cc57fe1d01f6fc53e84b2efb1cf5298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
SQLite3::exec test, testing for wrong type parameters
--CREDITS--
Michelangelo van Dam
# Belgian PHP Testfest 2009
--SKIPIF--
<?php require_once(__DIR__ . '/skipif.inc'); ?>
--FILE--
<?php

$db = new SQLite3(':memory:');
$db->exec(array ('a','b','c'), 20090509);

?>
--EXPECTF--
Warning: SQLite3::exec() expects exactly 1 parameter, 2 given in %s on line %d