ORM思想,关系型数据库中表与实体类的映射
ORM(Object Relational Mapping):对象到关系型数据库的映射
数据库 | Java |
---|---|
一张表 | 一个类(JavaBean) |
一条记录 | 一个对象 |
一个列 | 一个属性 |
案例:将数据库中查询的结果存储到Java集合中
// 获取连接
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/wyt_test", "root", "123456");
// 获取执行SQL语句的对象
String SQL = "SELECT id, name, age, salary FROM t_employees";
PreparedStatement preparedStatement = connection.prepareStatement(SQL);
ResultSet resultSet = preparedStatement.executeQuery();
// 声明集合(需要提前声明Employee的JavaBean)
ArrayList<Employee> list = new ArrayList<>();
// 获取返回的结果集
while(resultSet.next()) {
int id = resultSet.getInt("id");
String name = resultSet.getString("name");
int age = resultSet.getInt("age");
double salary = resultSet.getDouble("salary");
list.add(new Employee(id, name, age, salary));
}
// 遍历结果
for(Employee e : list) {
System.out.println(e);
}
// 释放资源
resultSet.close();
preparedStatement.close();
connection.close();
原文地址:https://blog.csdn.net/wytccc/article/details/145204744
免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!