示例#1
0
 public static Db_stmt new_update_(Db_conn conn, String tbl, String[] where, String... flds) {
   Db_qry qry = Db_qry_update.New(tbl, where, flds);
   return conn.Stmt_new(qry);
 }