It looks that some database types/SQL dialects are not recognized correctly (like MS SQL Server via odbc driver, …).
In the result of the qlue_sql()
the column names are marked with the apostrophe and not with quotation mark.
<SQL> SELECT 'ReportName', 'ExecutionResult', 'StartTime', 'EndTime'
FROM
WHERE 'ReportName' = 'ContentPerWeek'
but the following syntax is accepted by the SQL server:
SELECT "ReportName", "ExecutionResult", "StartTime", "EndTime"
FROM
WHERE "ReportName" = 'ContentPerWeek'
Is it possible to overwrite the connection object based settings or specify manually the characters used quote (or to delimit the column names)?