六步:
1、加载驱动
2、建立连接
3、创建Statement对象(也可能是其他类似Statement的对象)
4、对第三步得到的对象执行sql语句,产生resultSet(结果集)对象
5、操作结果集
6、释放资源(close方法,遵循后创建先关闭原则)
package com.bjsxt.jdbc;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
* JDBC与Mysql建立连接的一般过程
* @author Som
*
*/
public class testJDBC {
public static void main(String[] args) {
Connection conn = null;
Statement st = null;
ResultSet rs = null;
try {
//第1步加载驱动,需要try-catch
Class.forName("com.mysql.jdbc.Driver");
//第2步建立链接,需要try-catch
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/testjdbc?characterEncoding=utf-8","root","");
//第3步得到statement对象
st = conn.createStatement();
//第4步通过第三步产生的对象进行sql操作,得到结果集-resultSet对象
String sql = new String("select * from t_user");
rs = st.executeQuery(sql);
//第5步操作结果集
while(rs.next()) {
//相关操作
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}finally {
//第6步,释放资源,调用close()方法需要try-catch
try {
if(rs!=null) rs.close();
} catch (SQLException e) {
e.printStackTrace();
}
try {
if(st!=null) st.close();
} catch (SQLException e) {
e.printStackTrace();
}
try {
if(conn!=null) conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
注:以上代码某些部分仅仅针对我自己某次学习中有效