I have one .Net application and i have two databases which
is in SQL server2000 and one more database in ORACLE? how
can i access the database from different Databases?
Answer Posted / santosh
Use
DATASET for that
just take 2 conenctions
one with Sql server and other with Oracle
then use
OledbDataAdopter DAD1 = new Oledbdataadopter("select * from
emp",SQL Serverconnection)
OledbDataAdopter DAD2 = new Oledbdataadopter("select * from
Student",Oracle)
then
DAD1.fill(Dataset,"emp");
DAD2.fill(dataset,"student");
now u can acces data from same Dataset
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is the function of new view engine in asp.net? : asp.net mvc
What is localhost in asp.net?
What are session state modes? List some of the important session state modes of asp.net.
Where is session cookies stored?
Is it possible to develop a single web application using ASP.NET webforms and ASP.MVC?
What are web beacons used for?
Explain transparent caching with aop?
Explain the main differences between asp and asp.net?
Explain in what order a destructors is called.
Explain the asp.net session state modes.
How to disable cut, copy and paste in TextBox using jQuery in asp.net?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
Explain advantages of caching?
Disable browser cache for entire ASP.NET website?
Any one can tell how we store tiff format images in database and retrive from the database(need for tiff format only)