Wednesday, March 5, 2008

Oracle .NET Data Provider - From Microsoft (System.Data.OracleClient)

________________________________________

Oracle .NET Data Provider - From Microsoft (System.Data.OracleClient)

____________________________________________________________________

The Microsoft .NET Framework Data Provider for Oracle is an add-on component to the .NET Framework 1.0 that provides access to an Oracle database using the Oracle Call Interface (OCI) as provided by Oracle Client software. Oracle 8i Release 3 (8.1.7) Client or later must be installed for this provider to function correctly.

Note: This namespace, class, or member is supported only in version 1.1 of the .NET Framework.

Using C#:

using System.Data.OracleClient; 
... 
OracleConnection oOracleConn = new OracleConnection(); 
oOracleConn.ConnectionString = 
     "Data Source=Oracle8i;" + 
     "Integrated Security=SSPI"; 
oOracleConn.Open();



For more information, see: OracleConnection Class and .NET Data Providers.

To view Microsoft KB articles related to OracleConnection, click here
____________________________________________________________________

Note:If You have need demo then contact with me.Post your request as a comment.
____________________________________________________________________

No comments: