Working with Oracle, SQL Server & mySQL
Posted: Sun 08 Mar 2009 20:36
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:
Will work for SQL Srver and mySQL but will not for Oracle. It has to be changed to:
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
Code: Select all
SELECT
unique_id FROM ta_util_conv_history
WHERE
unique_id = 'test';Code: Select all
SELECT
"unique_id" FROM "ta_util_conv_history"
WHERE
"unique_id" = 'test'Please let me know what I am doing wrong.
Beast Regards,
Farshad R. Vossoughi