217218219220221222223224
return QueryResult.QR(); } @Override public SelectQuery select(String... fields) { SelectQuery sQ = new MySQLSelectQuery(this); return sQ.select(fields); }
223224225226227228229230
return sQ.select(fields); } @Override public SelectQuery select(List<String> fields) { SelectQuery sQ = new MySQLSelectQuery(this); return sQ.select(fields); }
229230231232233234235236
return sQ.select(fields); } @Override public SelectQuery select(Map<String, String> fields) { SelectQuery sQ = new MySQLSelectQuery(this); return sQ.select(fields); }
207208209210211212213214
return QueryResult.QR(); } @Override public SelectQuery select(String... fields) { SelectQuery sQ = new H2SelectQuery(this); return sQ.select(fields); }
213214215216217218219220
return sQ.select(fields); } @Override public SelectQuery select(List<String> fields) { SelectQuery sQ = new H2SelectQuery(this); return sQ.select(fields); }
219220221222223224225226
return sQ.select(fields); } @Override public SelectQuery select(Map<String, String> fields) { SelectQuery sQ = new H2SelectQuery(this); return sQ.select(fields); }
return QueryResult.QR(); } @Override public SelectQuery select(String... fields) { SelectQuery sQ = new SQLiteSelectQuery(this); return sQ.select(fields); }
return sQ.select(fields); } @Override public SelectQuery select(List<String> fields) { SelectQuery sQ = new SQLiteSelectQuery(this); return sQ.select(fields); }
return sQ.select(fields); } @Override public SelectQuery select(Map<String, String> fields) { SelectQuery sQ = new SQLiteSelectQuery(this); return sQ.select(fields); }