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 microsoft ado.net?
How to read data with the sqldatareader ?
What are the Features of a dataset
Which is the best method to get two values from the database?
What is dbcontext and dbset in entity framework?
What is full form of ado?
What is connection pooling and what is the maximum pool size in ado.net connection string?
What is the difference between typed and untyped dataset?
What is ado connection?
How to enable and disable connection pooling?
What are the different namespaces used in the project to connect the database? What data providers available in .net to connect to database?
Which database is the ado.net sql connection object designed for?
Which is faster ado.net or linq?
What is the use of SqlCommandBuilder?
Which property is used to check whether a DataReader is closed or opened?