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 datareader and dataadapter?
What is Data view?
can we create synonymn in ms access,sql server,my sql if so explain me with example
What is the difference between ADO and ADO.Net?
What is linq and entity framework?
What is sqldatasource?
How to read data with the sqldatareader ?
Which is the best method to get two values from the database?
What are all the commands used with Data Adapter?
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?
How to Read, Add, Update and Delete record in Entity Framework ?
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 ado.net code?
Which control of the BindingNavigator returns the current position within the data source?
How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?