what is the syntax code for oldb to connect oracle

Answers were Sorted based on User's Feedback



what is the syntax code for oldb to connect oracle..

Answer / srinivas.kinthada

i think oldb is not correct it's may b.
it is oledb

using system.data.oledb;
oledbconnection cn=new
oledbconnection("uid=<username>;pwd=<password>;server=<servername>");
cn.open();

Is This Answer Correct ?    2 Yes 0 No

what is the syntax code for oldb to connect oracle..

Answer / 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

what is the syntax code for oldb to connect oracle..

Answer / sudha

first add the namespace

using system.Data.oledb;

OledbConnection cntn = new OledbConnection("Provider =
Microsoft.jet.oledb.12.0;datasource = (local);Integrated
security = SSPI,persistent Security = false");

provider = it depends on version of Microsoft Access like if
it is 2003 - 4.0 & if it is 2007 - 12.0

dataource - u can make it as local or provide the path to ur
database

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ADO.NET Interview Questions

What is the difference between connected and disconnected environment?

0 Answers  


Which object is used to add relationship between two Datatables?

0 Answers  


What is data access pattern?

0 Answers  


What are the major difference between classic ADO and ADO.NET?

0 Answers  


What is serialization and de-serialization in .net?

0 Answers  


What is a string variable?

0 Answers  


What is difference between ado and other data object?

0 Answers  


What are the steps you will take to improve performance?

0 Answers  


What are the Different layers in ADO.Net?

7 Answers  


What are advantages of microsoft-provided data provider classes in ado.net?

0 Answers  


How to bind the controls(best practice) comboboxes to the data in the dataset?

0 Answers  


How is entity framework different from ado.net?

0 Answers  


Categories