예제 #1
0
파일: NutDao.java 프로젝트: JRed1989/nutz
 public boolean drop(String tableName) {
   if (!exists(tableName)) return false;
   Sql sql = Sqls.createf("DROP TABLE %s", tableName);
   _exec(sql);
   return true;
 }