in reply to Solved: DBI and MySQL not setting database properly
Does your statement work in the MySQL command line client?
I suspect your problem occurs because group is a reserved word in SQL. Maybe it works if you use the following form of the statement:
SELECT * FROM "group"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBI and MySQL not setting database properly
by KolassaRaptor (Monk) on Feb 24, 2016 at 17:19 UTC | |
|
Re^2: DBI and MySQL not setting database properly
by chacham (Prior) on Feb 25, 2016 at 14:15 UTC |