56575859606162
/** * Creates a new data source */ public ConnectionPoolDataSourceImpl() { _database = new Database(); }
484950515253545556
Database _db; public DebugQuery(Path path) throws Exception { _db = new Database(); _db.setPath(path); _db.init(); }
55565758596061
/** * Creates a new data source */ public DataSourceImpl() { _database = new Database(); }
61626364656667686970717273
public TempFileManager(Path path) { try { path.getParent().mkdirs(); Database database = new Database(); database.ensureMemoryCapacity(1024 * 1024); database.init(); Resin resin = Resin.getCurrent(); String serverId = ""; if (resin != null)