定义一个方法,查询emp表的数据将其封装为对象,然后装载集合,返回。
时间: 2024-04-13 17:31:23 浏览: 65
您好!
您可以使用以下代码定义一个方法,查询emp表的数据并将其封装为对象,然后将这些对象装载到集合中并返回:
```java
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
public class EmployeeDAO {
public List<Employee> getEmployees() {
List<Employee> employeeList = new ArrayList<>();
// 连接数据库
Connection connection = null;
Statement statement = null;
ResultSet resultSet = null;
try {
// 建立数据库连接
connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/your_database", "username", "password");
// 创建查询语句
String query = "SELECT * FROM emp";
// 创建 Statement 对象
statement = connection.createStatement();
// 执行查询语句
resultSet = statement.executeQuery(query);
// 遍历结果集
while (resultSet.next()) {
// 从结果集中获取数据
int empId = resultSet.getInt("emp_id");
String empName = resultSet.getString("emp_name");
// 其他字段...
// 创建 Employee 对象并设置属性
Employee employee = new Employee();
employee.setEmpId(empId);
employee.setEmpName(empName);
// 设置其他属性...
// 将 Employee 对象添加到集合中
employeeList.add(employee);
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭连接和释放资源
try {
if (resultSet != null) {
resultSet.close();
}
if (statement != null) {
statement.close();
}
if (connection != null) {
connection.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
// 返回装载了 Employee 对象的集合
return employeeList;
}
}
```
上述代码假设您使用的是 MySQL 数据库,需要将 "your_database" 替换为您实际的数据库名,"username" 和 "password" 替换为您的数据库用户名和密码。
另外,请确保已经在项目中引入了适当的 JDBC 驱动程序。
希望对您有帮助!如果您还有其他问题,请随时提问。
阅读全文