java-从结果集中提取列表
发布时间:2022-07-14 03:56:12 232
相关标签: # php
ResultSet
. 我试图解析结果集以将信息提取到列表中。
static List parsePeople(ResultSet rs) throws SQLException {
List people = new ArrayList();
while(rs.next()) {
people.add(parsePerson(rs));
}
return people;
}
static Person parsePerson(ResultSet rs) throws SQLException {
Person p= new Person();
p.setFirstName(rs.getString("firstName"));
p.setLastName(rs.getString("lastName"));
//Extracting the list for number of siblings gives an error
//Tried the below
Listsiblings= (List) rs.getObject("siblings",ArrayList.class); //Fail
return p;
}
Class Person{
String firstName;
String lastName;
List numberOfSiblings;
}
如何从结果集中提取列表?
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报