ddl.sql
我有一个要导入的MySQL DDL 文件。它的开头是这样的:
--=20MySQL=20dump=2010.11=0A--=0A--=20Host:=20localhost=20=20=20=20=
Database:=20ww=0A--=20=
------------------------------------------------------=0A--=20Server=20=
我认为它是一种引用的可打印编码。当我尝试通过以下方式导入时,mysql testdb < ddl.sql
出现以下错误:
ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '--=20MySQL=20dump=2010.11=0A--=0A--=20Host:=20localhost=20=20=20=20=Database:=2' at line 1
MySQL 有没有办法读取这种文件?还是我必须先转换它?有什么想法吗?
答案1
qprint
解决方案是在导入之前对文件进行解码。