I am very new to this and I would hope that there is a simple answer. I have an application which must work with Oracle, MS SQL and my SQL. It appears that my SQL statements are not formatted to meet the provider's needs. For example, the following call:
Code: Select all
SELECT
unique_id FROM ta_util_conv_history
WHERE
unique_id = 'test';
Will work for SQL Srver and mySQL but will not for Oracle. It has to be changed to:
Code: Select all
SELECT
"unique_id" FROM "ta_util_conv_history"
WHERE
"unique_id" = 'test'
Note all the double quotes and the removal of ";" atthe end of the SQL command. I would have thought that usinh uniDac coponents would do all of this for me in thebackground.
Please let me know what I am doing wrong.
Beast Regards,
Farshad R. Vossoughi