Developers community number 1 connection string reference

dotConnect for Oracle

This is a .NET Framework Class Library provided by Devart.
The class library is contained in the file Devart.Data.Oracle.dll.
Coding
Add a reference to the assembly Devart.Data.Oracle and include the Devart.Data.Oracle namespace. Instantiate a new OracleConnection connection object. Set the connection string and open the connection.


   VB.NET code sample
Imports Devart.Data.Oracle
Dim myConnection As OracleConnection = New OracleConnection()
myConnection.ConnectionString = myConnectionString
myConnection.Open()
//execute queries, etc
myConnection.Close()


   C# code sample
using Devart.Data.Oracle;
OracleConnection myConnection = new OracleConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();


Description
dotConnect for Oracle is an enhanced data provider for Oracle that builds on ADO.NET technology to present a complete solution for developing Oracle-based database applications. As part of the Devart database application development framework, dotConnect for Oracle offers both high performance native connectivity to the Oracle database and a number of innovative development tools and technologies. dotConnect for Oracle introduces new approaches for designing application architecture, boosts productivity, and leverages database application implementation.

dotConnect for Oracle is a scalable data access solution developed with wide adaptability in mind. It can be successfully used in WinForms, ASP.NET, two-tier, multi-tier applications; within the ASP.NET Provider Model; in conjunction with the Enterprise Library; under .NET Compact Framework, Mono Framework and so on. Depending on the edition you choose, dotConnect for Oracle can be used as a powerful ADO.NET data provider, or an effective application development framework.

More info about this class library can be found at the Devart product page.
Connection Strings
The dotConnect for Oracle class library can be used to connect to the following data sources.

To see the available connection options, navigate to the connection strings reference by clicking the data source link.
Oracle
Additional info or comments on this class library? Want to submit content?

Send an e-mail to
Copyright © 2010 ConnectionStrings.com   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.