what is the syntax code to oledb to connect oracle

Answer Posted / siddhartha sharma

using System.data.oledb;
oledbdataadapter da;
dataset ds;
da=new data Adapter("select * from
Databasename","connection string");
ds=new dataset();
da.fill(ds);// fetch the database to frontend
//// we use that syntex to fetch oracle database to our
application

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is ado.net objects?

713


What is data view and variable view?

677


Define partial class?

730


How to enable and disable connection pooling?

743


What is the difference between data reader and data adapter?

786


What is sqldatareader in ado.net?

686


How can I retrieve two tables of data at a time by using data reader?

728


What is the use of connection object in ado.net?

785


What is typed dataset ?

888


What is dataadapter in ado.net?

702


What is the difference between dataset and datatable?

727


What are the advantage of ado.net?

748


What are the disadvantages of using datalist?

713


What is aggregate root?

732


What is concurrency? How will you avoid concurrency when dealing with dataset? (One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid the problem?)

783