zoukankan      html  css  js  c++  java
  • mysql导入sql文件的时候报告ERROR: ASCII '' appeared in the statement

    问题描述:

    今天导入SQL文件做测试,但是执行的时候发现如下错误提示:

    ERROR: 
    ASCII '' appeared in the statement, but this is not allowed unless option --binary-mode is enabled and mysql is run in non-interactive mode. Set --binary-mode to 1 if ASCII '' is expected. Query: ''.
    Bye

    解决方法:

    1、把SQL文件在头加入sublime-file-save with encoding - utf-8 with bom,经过测试就可以了

    2、网上还有说使用登入的时候加--binary-mode=1

    mysql --binary-mode=1 -h127.0.0.1 -uroot -p123456 -P3306
    mysql> use mysql;
    mysql> source /data/tse.sql
  • 相关阅读:
    2.25家庭记账本小软件
    2.10简单体温记录小软件总结
    4.26PHP
    4.25Android
    4.24css
    4.23css
    4.22电梯演讲
    4.21python
    4.20python
    4.19python
  • 原文地址:https://www.cnblogs.com/Sungeek/p/12923821.html
Copyright © 2011-2022 走看看