标签:
String sql="SELECT flow_id,Type,id_card,exam_card,student_name,location,grade FROM examstudent";
rs = st.executeQuery(sql);rs:数据集。
rs.getInt(int index);
rs.getInt(String columName);
你可以通过索引或者列名来获得查询结果集中的某一列的值。
例如:
while(rs.next){
rs.getInt(1)//等价于rs.getInt("flowid");
rs.getString(5)//等价于rs.getInt("student_name");
}
ResultSet的getInt(),getString()方法
标签:
原文地址:http://www.cnblogs.com/TTTTT/p/5920655.html