SmartClient 13.0-p20240210
Hello, I just noticed that DataSource.quoteColumnNames doesn't work when the field has a customSelectExpression, so I get a query like this:
where _canRemove is not quoted - actually for this use case I prefer to change the property name, so not a big deal for me.
I also noticed that it doesn't work for includeFrom fields.
The database is Oracle.
Hello, I just noticed that DataSource.quoteColumnNames doesn't work when the field has a customSelectExpression, so I get a query like this:
Code:
SELECT LEG_SERVIZI_PACCHETTI."ID_REC", LEG_SERVIZI_PACCHETTI."ID_FASCIA_PREZZO_FK", LEG_SERVIZI_PACCHETTI."ID_SERVIZIO_AGGIUNTIVO_FK", CASE WHEN SYSTIMESTAMP BETWEEN DATA_INIZIO_VENDITA AND DATA_FINE_VENDITA THEN 'F' ELSE 'T' END AS _canRemove ....
I also noticed that it doesn't work for includeFrom fields.
The database is Oracle.
Comment