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 use of placeholder control?
Define web services in asp.net.
What is csrf attack in asp.net?
Explain server-side scripting and client-side scripting.
What is the difference between ldap and active directory?
which one is more flexibility and reliability and durability asp.net (VS)php which one is best and which one we do nice to create dynamic websites
Explain the asp.net page life cycle.
Explain the difference between response.redirect vs server.transfer
What is session management in web application?
Define msil.
Explain the difference between overriding and overloading?
What is difference between URL and URI?
Where is the view state data stored?
What are the differences between clr & cts?
What is scope of an application variable in asp.net?