B
bsm
Hi,
I need to develop an Asp.net Application which should support any
backend (SQL/Oracle). Also it store Multilingual data.
I found the Query for SQL Server as follows:
---------------------------------------------------------------
INSERT INTO MusicAlbum (Album_ID, [Year], Name, Artist_ID, Company_ID)
VALUES (12345, 2005, N'Abida', 4653, 403)
For Oracle
-------------
INSERT INTO Employee (ENAME,EID) VALUES (UNISTR('" +
unicode_iso8859(TextBox1.Text) + "'),'"+ TextBox2.Text +"')"
I want to use "ENTERPRISE LIBRARY". So that I need to write a common
query which Insert into both SQL Server/Oracle (depends upon the
req).
PLZ HELP.
I need to develop an Asp.net Application which should support any
backend (SQL/Oracle). Also it store Multilingual data.
I found the Query for SQL Server as follows:
---------------------------------------------------------------
INSERT INTO MusicAlbum (Album_ID, [Year], Name, Artist_ID, Company_ID)
VALUES (12345, 2005, N'Abida', 4653, 403)
For Oracle
-------------
INSERT INTO Employee (ENAME,EID) VALUES (UNISTR('" +
unicode_iso8859(TextBox1.Text) + "'),'"+ TextBox2.Text +"')"
I want to use "ENTERPRISE LIBRARY". So that I need to write a common
query which Insert into both SQL Server/Oracle (depends upon the
req).
PLZ HELP.