Database connector - MariaDB - reserved words

1
Hi, Did someone manage to use databse connector to fetch data for reserved words from MariaDB? It's working for Oracle, Postgres... For MariaDB I get errors.  For example - attribute in temporary object set AS `_id`.    Fetch data directly results with error: "java.lang.RuntimeException: The entity type '***************' does not contain the primitive 'id' as specified in the query."   Fetching data using aliases by SELECT id AS "_id" FROM... gives a result with the same error.  Someone has any idea or had the same problem?   
asked
1 answers
1

May be the double quotes is not required.

 

try SELECT id AS _id FROM...

answered