From b2f027a2dcc512044c23b6df94cdfba81a73d859 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 24 Feb 2012 17:19:41 +0000 Subject: [PATCH] [#1145] Add runtime configuration to specify whether a java.sql.PreparedStatement (with bind variables) or a java.sql.Statement (with inlined parameters) should be executed - Fixed integration tests --- .../src/org/jooq/test/_/testcases/ExecuteListenerTests.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jOOQ-test/src/org/jooq/test/_/testcases/ExecuteListenerTests.java b/jOOQ-test/src/org/jooq/test/_/testcases/ExecuteListenerTests.java index 795ed86d6b..2e11cd7193 100644 --- a/jOOQ-test/src/org/jooq/test/_/testcases/ExecuteListenerTests.java +++ b/jOOQ-test/src/org/jooq/test/_/testcases/ExecuteListenerTests.java @@ -41,6 +41,7 @@ import static junit.framework.Assert.assertNotNull; import static junit.framework.Assert.assertNull; import static junit.framework.Assert.assertTrue; import static junit.framework.Assert.fail; +import static org.jooq.conf.SettingsTools.executePreparedStatements; import static org.jooq.impl.Factory.param; import static org.jooq.impl.Factory.val; @@ -411,6 +412,11 @@ extends BaseTest