插入数据库一条数据:
例如:
//2.建立连接 参数 地址 用户 ,密码
Connection con= DriverManager.getConnection(url:"jdbc:mysql://localhost:3306/db2020", user:"root", password:"123456");
//3.准备sqlString sql="INSERT into cat VALUES(NULL,‘狸猫‘,4)";
数据库出现:
解决办法:修改
Connection con= DriverManager.getConnection("jdbc:mysql://localhost:3306/db2020?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&allowMultiQueries=true&serverTimezone=Asia/Shanghai", "root", "123456"); 成功后:
原文地址:https://www.cnblogs.com/s999/p/12266953.html
时间: 2024-10-15 10:59:02