I used mysqldump to export my database and then I imported it into MySQL on my other server. I can now see all my tables if I do \"show tables\" but I can\'t actually select
I my case it was SQLCA.DBParm
parameter.
I used SQLCA.DBParm = "Databse = "sle_database.text""
but it must be
SQLCA.DBParm = "Database='" +sle_database.text+ "'"
Explain : you are going to combine three strings :
a) Database=' - "Database='"
b) (name of the database) - +sle_database.text+
c) ' - "'"