176177178179180181182183184185186
private AdapterBase selectAdapter(String driver) { AdapterBase res = null; if (driver.startsWith("jdbc:mysql:")) { res = new MySqlAdapter(this); } else if (driver.startsWith("jdbc:postgresql:")) { res = new PostgreSqlAdapter(this); }