[JAVA]JDBC-ResultSet查询数据
executeQuery 执行SQL语句
public class JdbcDemo {
public static void main(String[] args) {
Connection connection = null;
Statement Statement = null;
try {
//注册驱动
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
try {
//获取连接
connection = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test?characterEncoding=UTF-8",
"root", "1579886070");
Statement = connection.createStatement();
String sql = "select *from student";
//返回结果集
ResultSet resultSet = Statement.executeQuery(sql);
//遍历集合
while (resultSet.next()){
//可以用字段名
int id = resultSet.getInt("id");
//可以用字段的位置
String name = resultSet.getString(2);
int age = resultSet.getInt("age");
System.out.println("id:"+id+",name:"+name+",age:"+age);
}
} catch (SQLException e) {
e.printStackTrace();
}
finally {
if(Statement != null){
try {
Statement.close();
} catch (Exception e) {
e.printStackTrace();
}
}
if(connection != null){
try {
connection.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
}
遍历时可以使用字段名或者字段的顺序。
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 xiaoxin1218@qq.com
文章标题:[JAVA]JDBC-ResultSet查询数据
文章字数:187
本文作者:周信
发布时间:2019-10-17, 19:35:34
最后更新:2023-05-03, 10:25:35
原始链接:http://zx21.xyz/2019/10/17/JAVA-JDBC-ResultSet查询数据/版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。