JAVA链接数据库 增删改查

2021/7/17 19:11:39

本文主要是介绍JAVA链接数据库 增删改查,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!


//加载驱动
Class.forName("com.mysql.jdbc.Driver");

//获得url 账户密码 获得链接
Connection connection=DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/bookmng?useUnicode=true&characterEncoding=utf-8", "root", "root123");
System.out.println(connection);

 

// // 增
// String sql="insert into book_table(book_name,book_author,book_price)"+"values(?,?,?)";
// PreparedStatement statement=(PreparedStatement) connection.prepareCall(sql);
// statement.setString(1, "三国");
// statement.setString(2, "罗贯中");
// statement.setInt(3, 90);
// statement .executeUpdate();



     String sql1="delete from book_table where book_id=?";
  PreparedStatement statement1=(PreparedStatement) connection.prepareCall(sql1);
  statement1.setInt(1, 2);
  statement1 .executeUpdate();




//改

String sql="update book_table set book_author =? where book_id=?";
PreparedStatement statement=(PreparedStatement) connection.prepareStatement(sql);
statement.setString(1, "gg");
statement.setInt(2,10 );
statement.executeUpdate();

 



这篇关于JAVA链接数据库 增删改查的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程