When querying using query mode when connected to Oracle 19c, and the column being queried has an alias, the oracle statement looks like this.
(AND table.column aliase = 'Input data' )
Example:
In the select part:
COMPANY.STATUS COMPANY_STATUS
PowerBuilder then constructs this addition to the where conditions.
(AND COMPANY.STATUS COMPANY_STATUS = 'A')
This results in Oracle error "ORA-00920 Invalid relational operator".
The alias should not have been included in the select when Oracle native connection is used.
We are using PowerBuilder 2021, build 1506.
Erling Kjerland