With the MySQL driver, one must explicitly specify the database name in queries, eg.
SELECT name FROM mydatabase.customer
where 'mydatabase' is the name of the database.
This is really annoying - would it be possible to have the extension automatically use a specified database? So that it would just be sufficient to type
With the MySQL driver, one must explicitly specify the database name in queries, eg.
SELECT name FROM mydatabase.customer
where 'mydatabase' is the name of the database. This is really annoying - would it be possible to have the extension automatically use a specified database? So that it would just be sufficient to type
SELECT name FROM customer
Thanks.