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 ole2 format?
What is dataset and datatable in ado.net?
How to retrieve the user id which is provided while windows authentication?
What is sqlconnection and sqlcommand?
how you will deal result set? How do you sort a dataset?If a dataset contains 100 rows, how to fetch rows between 5 and 15 only?
What is ole in vb?
Which is the feature of ado.net?
What are the features of ado.net?
What does sqldatareader return?
What is serialization and de-serialization in .net? How can we serialize the dataset object?
What is serialization and de-serialization in .net?
What provider ado.net use by default? Explain the role of data provider in ado.net? What is the role of data provider in ado.net?
What is partial class?
What are the advantage of ado.net?
How do you implement locking concept for dataset?