what is the syntax code to oledb to connect oracle
Answer Posted / srinivas
using system.data.oledb;
oledbconnection cn=new
oledbconnection("uid=<user_name>;pwd=<pwd>;server=<servername>");
cn.open();
here u declare <user_name> is u give username
pwd is u give password
<server> or data source is u give
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which is faster datareader or dataadapter?
What are two types of transaction supported by ado.net?
Why do we serialize data?
What are advantages of microsoft-provided data provider classes in ado.net?
What is oledb connection?
What are the data providers in ADO.NET framework?
What is the default provider in ado.net?
What are the benefits of ADO.NET?
What is execute reader in ado.net?
What is the meaning of object pooling?
What is a serialized object?
What is difference between executequery and executeupdate?
What are the data access namespaces in .NET?
What are ado.net objects?
Data reader read and forward only, how is it possible to get 2 tables of data at a time?