Ejemplo n.º 1
0
 public static boolean check(HashMap<String, String> param)
     throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
   return sql.check(tableName, properties, param);
 }
Ejemplo n.º 2
0
 public static boolean delete(AbstractCondition where)
     throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
   return sql.delete(tableName, where);
 }
Ejemplo n.º 3
0
 public static void drop()
     throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
   sql.drop(tableName);
 }
Ejemplo n.º 4
0
 public static ArrayList<HashMap<String, String>> select(AbstractCondition where)
     throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException {
   return sql.select(tableName, properties, where);
 }
Ejemplo n.º 5
0
 public static void create()
     throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
   sql.create(tableName, properties);
 }