what is the syntax code for oldb to connect oracle
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What is isolation?
What is executequery?
What is the executescalar method?
Define executenonquery?
What is difference between dataset and datatable?
If a table contains 20000 records . In a page at each time 100 records to be displayed what are the steps you will take to improve performance? Will you use dataset or datareader?
Being fresher How would i answer to the question that what is your salary exception?
what is ado.net
What is ole db and odbc?
How to check if the Dataset has records ?
Explain how can we load multiple tables in to dataset?
Which method is used by command class to execute SQL statements that return single value?