1) Load the JDBC Driver 加载数据库驱动
2) Establish the Database Connection 建立数据库连接
3) Create a Statement Object 创建数据查询对象
4) Execute a Query 使用查询或者执行DML语句
5) Process the Results 如果是查询语句,有结果集,那么就对结果集进行操作
6) Close the Connection 最后将连接关闭 conn.close()
1) Load the JDBC Driver 加载数据库驱动
2) Establish the Database Connection 建立数据库连接
3) Create a Statement Object 创建数据查询对象
4) Execute a Query 使用查询或者执行DML语句
5) Process the Results 如果是查询语句,有结果集,那么就对结果集进行操作
6) Close the Connection 最后将连接关闭 conn.close()