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 difference between datatable and dataset?
How to work with disconnected data - the dataset and sqldataadapter?
What is ole data type?
What is the difference between sqldatareader and sqldataadapter?
How can you identify whether or not any changes are made to the DataSet object since it was last loaded?
What is ado.net in mvc?
What is DataReader Object?
What is microsoft ado.net?
Explain sqlconnection object?
What are the namespaces used in ado.net for data access?
What is the difference in record set and dataset?
How can we add/remove row's in "datatable" object of "dataset"?
What is command class in ado.net?
Can we do database operations without using any of the ado.net objects?
What are the benefits of ADO.NET?