摘要:
stmt.executeQuery("select * from user where username = " + name);执行上述代码就会引发该错误。原因是:拼凑sql语句时对字符类型数据没有用引号引起来更改为以下语句即可改正stmt.executeQuery("select * from user where username = '" + name + "'"); 阅读全文
摘要:
前言自己在使用HeidySQL操作mysql的时候,突然发生了“ERROR 1130 (HY000): Host ‘xxxx’ is not allowed to connect to this MySQL server”这一问题。网上给出的答案大多数是,更改my.ini文件,这个文件应该是在C:\ProgramData\MySQL\MySQL Server 5.7目录下,而不是MySql的安装目... 阅读全文