in reply to Re^3: connect to DBD::MYSQL
in thread connect to DBD::MYSQL
seems like the 'user' does not have access privileges. Any ideas?use test; # create table (name char(20)); CREATE USER 'test_user'@'localhost'; GRANT ALL PRIVILEGES ON * . * TO 'test_user'@'localhost'; select * from ttt;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: connect to DBD::MYSQL
by karlgoethebier (Abbot) on Feb 01, 2014 at 19:10 UTC |