. NET Connect to Oracle Methods

Source: Internet
Author: User

. NET Connect to Oracle Methods

Mode 1: Direct use. NET Oracle-driven connectivity

Reference System.data.oracleclient;

Using System.data.oracleclient;

String oradb = "Data source=water; User Id=modis; Password=modis;integrated Security=no ";

OracleConnection conn = new OracleConnection (ORADB);

Conn. Open ();

Mode 2: Odp.net (Oracle Data provider.net) is installed and connected via OLE DB.

Reference System.Data.OleDb;

Using System.Data.OleDb;

String oradb = "Provider=oraoledb.oracle;data source=water; User Id=modis; Password=modis; ";

OleDbConnection myconnection = new OleDbConnection (ORADB);

Myconnection.open ();

Mode 3: After installing Odp.net, through the Oracle Connector

Reference the dynamic link library Oracle.DataAccess.Client.

Using Oracle.DataAccess.Client;

String oradb = "Data source=water; User Id=modis; Password=modis; ";

OracleConnection conn = new OracleConnection (ORADB); C#

Conn. Open ();

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.