I'm trying to use custom queries with MySQL.
A simple working statement is:
But when I try to make databasename a parameter:
it doesn't work, because the parameter is recognized as text and automatically padded with single quotes (') like
Is it possible to change the plugin, so it takes the parameters literally?
A simple working statement is:
Code:
SELECT * FROM databasename.tablename
Code:
SELECT * FROM ?.tablename
Code:
SELECT * FROM 'databasename'.tablename