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
What is ado.net objects?
What is data view and variable view?
Define partial class?
How to enable and disable connection pooling?
What is the difference between data reader and data adapter?
What is sqldatareader in ado.net?
How can I retrieve two tables of data at a time by using data reader?
What is the use of connection object in ado.net?
What is typed dataset ?
What is dataadapter in ado.net?
What is the difference between dataset and datatable?
What are the advantage of ado.net?
What are the disadvantages of using datalist?
What is aggregate root?
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?)