From: Lele Gaifax Date: Thu, 13 Dec 2007 20:16:23 +0000 (+0000) Subject: Firebird does use qmark style params X-Git-Tag: rel_0_4_2~56 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0f48e83833daa1e65593721af011a11ccd2b947;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Firebird does use qmark style params --- diff --git a/test/engine/execute.py b/test/engine/execute.py index a79d182479..8d6dd95399 100644 --- a/test/engine/execute.py +++ b/test/engine/execute.py @@ -18,7 +18,7 @@ class ExecuteTest(PersistTest): def tearDownAll(self): metadata.drop_all() - @testing.fails_on_everything_except('sqlite', 'maxdb') + @testing.fails_on_everything_except('firebird', 'maxdb', 'sqlite') def test_raw_qmark(self): for conn in (testbase.db, testbase.db.connect()): conn.execute("insert into users (user_id, user_name) values (?, ?)", (1,"jack"))