From 6a60b32ef0e8266618066e23c9f0e44f8d0633cd Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Thu, 23 Feb 2012 09:25:10 -0500 Subject: [PATCH] Firebird Prepared Statement test --- tests/databases/firebird.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/databases/firebird.php b/tests/databases/firebird.php index 1562fb3..eb05935 100644 --- a/tests/databases/firebird.php +++ b/tests/databases/firebird.php @@ -102,4 +102,13 @@ class FirebirdTest extends UnitTestCase { $table_exists = in_array('create_test', $this->tables); $this->assertFalse($table_exists); } + + function TestPreparedStatements() + { + $sql = 'INSERT INTO "create_test" ("id") VALUES (?),(?),(?)'; + $this->db->prepare($sql); + + $this->db->execute(array(1,2,3)); + + } } \ No newline at end of file