mysql
的哪种LZ-string
数据类型会压缩结果?
为此,在我的数据库中变量为MEDIUMTEXT
类型和排序规则UTF8bin
。使用post方法(asp.net core web services
)压缩并发送到数据库后,它没有正确写入数据库中。
将数据发送到mysql
数据库(post方法)是:㊁炆ౠ혏恮ᎀ찃挃뤀
数据库中的书面数据为:??????????
该如何解决?
答案 0 :(得分:0)
已解决。问题不是在mysql中。 问题出在Web服务中,在连接字符串中。
optionsBuilder.UseMySQL("server=localhost;database=webshopmobiletown;user=root;password=;");
到
optionsBuilder.UseMySQL("server=localhost;database=webshopmobiletown;user=root;password=;CharSet=utf8;");