My application uses a SQL query that does a division operation in the SELECT statement like this:
SELECT length / 0.3048 as length_eng,
width / 0.3048 as width_eng,
......
This SQL works fine if Oracle 9i driver is used to connect to the database, but when Oracle 10g driver (10.02.00.01) is used, it gives me "ORA-00907: missing right parenthesis" error. Do you know if this is a known issue with Oracle 10g driver? If so, is there a patch?
Thank you in advance for your help!
SELECT length / 0.3048 as length_eng,
width / 0.3048 as width_eng,
......
This SQL works fine if Oracle 9i driver is used to connect to the database, but when Oracle 10g driver (10.02.00.01) is used, it gives me "ORA-00907: missing right parenthesis" error. Do you know if this is a known issue with Oracle 10g driver? If so, is there a patch?
Thank you in advance for your help!