use of org.simpleflatmapper.db.ConnectionParam in project mapping-benchmark by arnaudroger.
the class QueryDslBenchmark method init.
@Setup
public void init() throws Exception {
ConnectionParam cp = new ConnectionParam();
cp.db = db;
cp.init();
templates = getSqlDialect(db);
}
use of org.simpleflatmapper.db.ConnectionParam in project mapping-benchmark by arnaudroger.
the class QueryDslSfmBenchmark method init.
@Setup
public void init() throws Exception {
ConnectionParam cp = new ConnectionParam();
cp.db = db;
cp.init();
templates = QueryDslBenchmark.getSqlDialect(db);
}
use of org.simpleflatmapper.db.ConnectionParam in project mapping-benchmark by arnaudroger.
the class Sql2OBenchmark method init.
@Setup
public void init() throws Exception {
ConnectionParam connParam = new ConnectionParam();
connParam.db = db;
connParam.init();
sql2o = new Sql2o(connParam.dataSource);
}
Aggregations