当前位置:网站首页>sql编码bug
sql编码bug
2022-07-27 18:15:00 【Fairy要carry】
场景:
之前在写订单业务中,我远程了用户信息模块和课程信息模块,然后封装到订单类中进行插入,全程debug一遍发现数据都是正常的,没有编码问题,当调用insert插入到数据库中时候发现出现了bug,中文乱码,猜测是server到sql时候可能编码有问题
解决:
show databases;
对有问题的表设置下字符集
alter database xxx character set utf8;查看mysql字符集
show variables where Variable_name like '%char%';查看数据表字符集
show create table t_demo;修改数据库字符集
set character_set_client=utf8;
set character_set_connection=utf8;
set character_set_database=utf8;
set character_set_results=utf8;
set character_set_server=utf8;
set character_set_system=utf8;
set collation_connection=utf8;
set collation_database=utf8;
set collation_server=utf8;修改数据表字符集
alter table t_demo character set utf8;边栏推荐
猜你喜欢

Jetpack Compose 性能优化指南——编译指标

Introduction to JVs Foundation

Swiftui view onReceive method receives "redundant" event resolution

Nailing development document
![Leetcode:1498. Number of subsequences that meet the conditions [sort + bisection + power hash table]](/img/a9/de68e8affcb6b84e82cf344e7254e3.png)
Leetcode:1498. Number of subsequences that meet the conditions [sort + bisection + power hash table]

MySQL驱动jar包的下载--保姆教程
![[dataset display annotation] VOC file structure + dataset annotation visualization + code implementation](/img/09/645ce4de40d18d8dd4532554826c9a.png)
[dataset display annotation] VOC file structure + dataset annotation visualization + code implementation
RK3399平台开发系列讲解(进程篇)15.36、理解进程和协程

Xdc 2022 Intel technology special session: Intel Software and hardware technology builds the cornerstone of cloud computing architecture

JVS公众号登陆配置
随机推荐
IM即时通讯开发如何提升移动网络下图片传输速度和成功率
学术分享 | 清华大学 康重庆:电力系统碳计量技术与应用(Matlab代码实现)
A new UI testing method: visual perception test
IE11 下载doc pdf等文件的方法
MySQL log error log
Huiding Technology: the acquisition of NXP vas business has been completed
从0开始写bootloader
MYSQL设计优化生成列
国际权威认可!OceanBase入选Forrester Translytical数据平台报告
What configurations are required to connect polardb and redis?
Write bootloader from 0
Injection attack
Jetpack compose performance optimization guide - compilation metrics
如何监控NVIDIA Jetson的的运行状态和使用情况
Can tonghuashun open an account on weekends? Is it safe to open an account
After working for bytek for two years, he got 15 offers at one go
JVS公众号登陆配置
Oracle +JDBC
Ie11 method of downloading doc PDF and other files
openresty lua-resty-core 使用