摘要: 避免Sql注入的问题。 不用Statement 而用PrepareStatement 预编译 然后手工赋值 setInt or setString 插入: public class TestInsert { public static void main(String[] args) { Conne 阅读全文
posted @ 2023-02-25 11:17 Rui2022 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1、配置资源文件 .properties (driver, url,username,password) 便于后期更改 driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/shop?useUnicode=true&characte 阅读全文
posted @ 2023-02-25 10:28 Rui2022 阅读(16) 评论(0) 推荐(0) 编辑
摘要: public class jdbcStudy { public static void main(String[] args) throws ClassNotFoundException, SQLException { //1.加载驱动,加载之前要把mysql-connector-java.jar包 阅读全文
posted @ 2023-02-25 09:21 Rui2022 阅读(13) 评论(0) 推荐(0) 编辑