步骤:
java通过JDBC来连接操作数据库
(1)加载数据库驱动程序:将jar包配置到classpath下
(2)连接数据库:使用连接地址
(3)使用语句进行数据库操作:sql语句
(4)关闭数据库连接:数据库连接有限,所以一定要关闭,释放资源
执行SQL语句 预编译sql 防止sql注入错误
PreparedStatement state = conn.prepareStatement(“insert into user values(?,?)”);
state.setString(1,”“);
state.setString(2,”“);
state.executeUpdate();
public void testjdbc1(){
/**
* 1.加载MySQL数据库的驱动程序
*/
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
System.exit(0);
}
/**
* 2.创建连接字符串(mysqld的ip地址,端口号,连接的数据库,用户名和密码)
* 并创建一条和mysqld的链接
*/
String url = "jdbc:mysql://127.0.0.1:3306/usermanager";
Connection connection = null;
Statement statem