/** * 保存Table数据,并指定列范围 * * @param conn * @param table * @param tableName 数据库表名 * @param columns 列范围 * @throws SQLException */ public static void saveData(Connection conn, Table table, String tableName, String columns) throws SQLException { saveData( conn, table, tableName, isEmptyString(columns) ? null : Arrays.asList(columns.split(","))); }
/** * 保存Table数据,自动产生并执行基于where key规则的增删改SQL语句 * * @param conn * @param table * @param tableName 数据库表名 * @throws SQLException */ public static void saveData(Connection conn, Table table, String tableName) throws SQLException { saveData(conn, table, tableName, ""); }