You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
377 B

  1. --TEST--
  2. SQLite3::exec test, testing for wrong type parameters
  3. --CREDITS--
  4. Michelangelo van Dam
  5. # Belgian PHP Testfest 2009
  6. --SKIPIF--
  7. <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
  8. --FILE--
  9. <?php
  10. $db = new SQLite3(':memory:');
  11. $db->exec(array ('a','b','c'), 20090509);
  12. ?>
  13. --EXPECTF--
  14. Warning: SQLite3::exec() expects exactly 1 parameter, 2 given in %s on line %d