I converted the database from MySQL to Firebird, all table names and field name are lowercase when I query the database, give me a table error that was not found, because firebird will automatically convert the table name to a query in an UPPERCASE letter, but mine the name of the table in the database is in string format.
For a query in the database, I must enclose the table name or the field name in double quote ... For example:
SELECT "field1","field2" FROM "table"
Is there a parameter in Firebird that allows you to query a database with a table / field name in a lowercase letter without quoting?
thank
source
share