这是里面的一个小例子,感觉这个文档真的很不错,分享下!*1 JDBC连接数据库6步 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() |