1 public List<Book> findAll(){
2 String sql="select * from book";
3 try {
4 return qr.query(sql,new BeanListHandler<Book>(Book.class));
5 } catch (SQLException e) {
6 System.out.println("huhu");//出错的时候也需要
7 }
8 }
添加回答
举报
0/150
提交
取消