Ejemplo n.º 1
0
 public void remove(String tableName) throws Exception {
   dbTablesDao.delete(tableName);
   return;
 }
Ejemplo n.º 2
0
 public void modify(DbTables dbTables) throws Exception {
   dbTablesDao.update(dbTables);
   return;
 }
Ejemplo n.º 3
0
 public DbTables getDbTables(String tableName) throws Exception {
   DbTables dbTables = dbTablesDao.select(tableName);
   return dbTables;
 }
Ejemplo n.º 4
0
 public void create(DbTables dbTables) throws Exception {
   dbTablesDao.insert(dbTables);
   return;
 }
Ejemplo n.º 5
0
 public List<DbTables> getListAll() throws Exception {
   List<DbTables> list = dbTablesDao.selectAll();
   return list;
 }