C # Connect to Oracle Database (direct reference DLL usage)

Source: Internet
Author: User
Tags oracleconnection

Operation Steps:

1, DLL download and reference (this DLL is actually oracle for C # specifically provided, in its official can also download to the Oracle website)
: Oracle.ManagedDataAccess.zip
After downloading, place the Oracle.ManagedDataAccess.dll in your project and then reference

2. Call (connstring change to its own connection string)

Using Oracle.ManagedDataAccess.Client; public static string Connectoracle ()        {            try            {                string connstring = "Data source= (description= (address= ( PROTOCOL=TCP) (host=130.147.246.144) (port=1521)) (Connect_data= (SERVICE_NAME=ECMS))); Persist Security info=true; User Id=system; password=service01; ";                OracleConnection con = new OracleConnection (connstring);                                Con. Open ();                return string. Empty;            }            catch (Exception ex)            {                return ex. ToString ();            }        }

  

Reference:

Http://www.cnblogs.com/yjmyzz/archive/2013/11/01/3400999.html
Http://www.cnblogs.com/ly303550688/archive/2013/01/31/2887104.html

C # Connect to Oracle Database (direct reference DLL usage)

Related Article

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.