public static Db_stmt new_select_(Db_conn conn, String tbl, String[] where, String... flds) { Db_qry__select_cmd qry = Db_qry_.select_cols_(tbl, Db_crt_.eq_many_(where), flds); return conn.Stmt_new(qry); }
public static Db_qry_delete new_(String tbl, String... where) { return new Db_qry_delete(tbl, Db_crt_.eq_many_(where)); }
public static Db_stmt new_delete_(Db_conn conn, String tbl, String... where) { Db_qry_delete qry = Db_qry_.delete_(tbl, Db_crt_.eq_many_(where)); return conn.Stmt_new(qry); }