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
Explain the difference in record set and dataset?
Which one of the objects is a high-level abstraction of the connection and command objects in ado.net?
Explain the dataadapter class in ado.net?
What is the difference between sqldatareader and sqldataadapter?
What is the use of adodc?
What is full form of ado?
What is a data control clerk?
Give an example of a .net application which connects to microsoft access database using ado.net classes.
What is dataset object? Explain the various objects in dataset.
What is difference between dataset and datatable?
What is Serialization in .NET? what are the types of Serialization?
If we are not returning any records from the database, which method is to be used?
What are the main differences between classic ado and ado.net?
What are the different execute methods of Ado.Net?
What property must be set and what method must be called in your code to bind the data from some data source to the Repeater control?