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