public static boolean check(HashMap<String, String> param) throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException { return sql.check(tableName, properties, param); }
public static boolean delete(AbstractCondition where) throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException { return sql.delete(tableName, where); }
public static void drop() throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException { sql.drop(tableName); }
public static ArrayList<HashMap<String, String>> select(AbstractCondition where) throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException { return sql.select(tableName, properties, where); }
public static void create() throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException { sql.create(tableName, properties); }