由于这张表需要查询所有数据,所以这样写
@Test
public void t6() {
Dao dao = dbTools.getDao();
List<Record> l = dao.query("sunyu_resource", Cnd.where("1", "=", "1"));
System.out.println(l);
}
这个
Cnd.where("1", "=", "1")
真是莫名其妙的,可否不传递这个参数?
添加这两个方法?
List<Record> query(String tableName);
List<Record> query(String tableName, Pager pager);