コード例 #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);
 }