what is the syntax code for oldb to connect oracle
Answer Posted / raghavendra.v
it is not oldb it may be oledb
using System.Data.Oledb;
Oledbconnection cn=new OleDbConnection
("Provider=Msdaora.1;uid=<username>;pwd=<pwd>;server=<server
name>");
cn.open();
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is difference between sqldatareader and sqldataadapter?
How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures?
What is command class in ado.net?
What are two types of transaction supported by ado.net?
In how many ways we can retrieve table records count? How to find the count of records in a dataset?
What is isolation?
What is ado.net explain with diagram?
What is microsoft ado.net?
What is the difference between executequery and executenonquery?
Which property is used to check whether a DataReader is closed or opened?
What is aggregate root?
What do you mean by performing asynchronous operation using command object?
How to create dynamic gridview?
How can we serialize the dataset object?
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?