主题:请问:如何读取数据库中为空的数据,并返回网页上
[em10]
下面假设用户TeacherId为11111的用户中的BookName为空,能否用hashMap这个函数读取数据,并返回
String sql = null;
ArrayList resultList = new ArrayList();
//newAccess.executeUpdate(resultList);
sql="select BookName from book WHERE TeacherID='11111';"; //添加接口
resultList = newAccess.executeQuery(sql);
for(int i=0;i<resultList.size();i++){
HashMap hash=(HashMap)resultList.get(i);
String bookname=hash.get("BookName").toString();
各位有什么意见都说说,若能把具体代码写写,将不胜感激
下面假设用户TeacherId为11111的用户中的BookName为空,能否用hashMap这个函数读取数据,并返回
String sql = null;
ArrayList resultList = new ArrayList();
//newAccess.executeUpdate(resultList);
sql="select BookName from book WHERE TeacherID='11111';"; //添加接口
resultList = newAccess.executeQuery(sql);
for(int i=0;i<resultList.size();i++){
HashMap hash=(HashMap)resultList.get(i);
String bookname=hash.get("BookName").toString();
各位有什么意见都说说,若能把具体代码写写,将不胜感激