예제 #1
0
파일: message.java 프로젝트: kumabook/ajweb
 public static boolean check(HashMap<String, String> param)
     throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
   return sql.check(tableName, properties, param);
 }
예제 #2
0
파일: message.java 프로젝트: kumabook/ajweb
 public static boolean delete(AbstractCondition where)
     throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
   return sql.delete(tableName, where);
 }
예제 #3
0
파일: message.java 프로젝트: kumabook/ajweb
 public static void drop()
     throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
   sql.drop(tableName);
 }
예제 #4
0
파일: message.java 프로젝트: kumabook/ajweb
 public static ArrayList<HashMap<String, String>> select(AbstractCondition where)
     throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException {
   return sql.select(tableName, properties, where);
 }
예제 #5
0
파일: message.java 프로젝트: kumabook/ajweb
 public static void create()
     throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
   sql.create(tableName, properties);
 }