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
Is it possible to edit data in Repeater control?
What are the rules to implement connection pooling?
Explain how do you connect to sql server database without using sqlclient?
What is execute reader in ado.net?
What is the difference between Optimistic and Pessimistic locking?
What is ole db and odbc?
Compare Data Reader & Dataset in ado.net?
What is adodb dll?
What are the ado.net connection pooling parameters?
What does ado stand for?
What is the provider being used to access oracle database?
Is it possible to load multiple tables in a Dataset?
Explain the difference between an ado.net dataset and an ado recordset?
What is defaultview in datatable?
What is sqlconnection and sqlcommand?