use of org.jdbi.v3.core.statement.ColonPrefixSqlParser in project jdbi by jdbi.
the class TestUseSqlParser method setUp.
@Before
public void setUp() throws Exception {
Jdbi db = dbRule.getJdbi();
// this is the default, but be explicit for sake of clarity in test
db.setSqlParser(new ColonPrefixSqlParser());
handle = db.open();
}
Aggregations