PHPMyAdmin doesn#39;t import unicode(PHPMyAdmin 不导入 unicode)
问题描述
当我使用 PHPMyAdmin 的导入功能时,它不会导入非 ASCII 字符,例如 ä、ö、ü、õ 以及字符后的其余单词.
When I use the import feature of PHPMyAdmin, it doesn't import non-ASCII characters such as ä, ö, ü, õ and the rest of the word after the characters.
当我用记事本打开 CSV 文件时,它会正常显示非 ASCII 字符,但是当我尝试导入它时 - 它不起作用.
When I open the CSV file with Notepad it displays the non-ASCII characters normally, but when I'm trying to import it - it doesn't work.
手动输入那些丢失的字符是可行的,MySQL 会按原样保存它们.有什么想法吗?
Entering those missing characters manually works and MySQL saves them just as it should. Any thoughts?
推荐答案
mySQL 在遇到当前字符集下无效的字符时会这样做.
mySQL will do this when it encounters a character that is invalid under the current character set.
您没有提到您使用什么工具来导入数据,但是您应该能够在导入时指定一个字符集.如果该字符集匹配数据库的,一切都会好起来的.另外,请确保文件实际上是用该字符集编码的.
You're not mentioning what tool you are using to import the data, but you should be able to specify a character set when importing. If that character set matches the database's, everything will be fine. Also, make sure the file is actually encoded in that character set.
如果您的导入工具没有提供选择字符集的选项,您可以尝试phpMyAdmin 确实如此.
If your import tool doesn't offer the option of selecting the character set, you could try phpMyAdmin which does.
这篇关于PHPMyAdmin 不导入 unicode的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHPMyAdmin 不导入 unicode
基础教程推荐
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 在多列上分布任意行 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
