一、mysql5.7中SELECT command denied to user问题 原因: 没赋予权限 解决办法: 连接mysql后,赋予权限
grant select,insert,update,delete on *.* to ajreport@"localhost" Identified by "ajreport";
第一个ajreport是用户名,第二个ajreport是密码