Servlet&MySql
openJK-dev
这个作者很懒,什么都没留下…
展开
-
关于Servlet中获取到Http传输过来的中文正常,而当数据插入到MySql中时为乱码或者问好的解决方案
1、当连接数据库时这样写 url="jdbc:mysql://localhost:3306/RQDataBase?useUnicode=true&characterEncoding=UTF-8" 2、如果是用连接池则用 url="jdbc:mysql://localhost:3306/RQDataBase?useUnicode=true&characterEncoding=UTF原创 2018-02-05 16:24:27 · 332 阅读 · 0 评论 -
MySql更新表中某个字段值时报一下错误
错误日志:Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor a...原创 2019-08-19 21:25:41 · 270 阅读 · 0 评论 -
MySql删除数据库中某一列中的特殊字符
update 表名 set 列名 = replace(列名,'原值','新值')原创 2019-08-19 21:28:33 · 1402 阅读 · 0 评论