C#使用instantclient串連 Oracle 10g )

來源:互聯網
上載者:User

C#使用instantclient串連 Oracle 10g  

1、從Oracle網站上下載instantclient-odbc-win32-10.2.0.3.zip

2、解壓縮到instantclient所在的目錄中

3、雙擊odbc_install.exe

4、控制台->管理工具->資料來源(ODBC)->添加資料來源->選擇oracle in instantclient10_2

       Data Source Name 可以任意起名,推薦和SID一樣

       Description 描述

       TNS Service Name 下拉式功能表中會自動顯示環境變數TNS_ADMIN所指目錄下的tnsnames.ora檔案中SERVICE_NAME的名稱,也就是要串連的SID

       UserID 使用者名稱

5、Test Connection串連成功

C#

項目->添加引用->.NET->System.Data.OracleClient.dll (這個DLL在裝完DOTNET 1.1就存在)

using System;
using System.Data;
using System.Windows.Forms;
using System.Data.OracleClient;

namespace Test
...{
    /**//// <summary>
    /// 簡潔期間,直接將實現寫在建構函式中
    /// </summary>
    public class Test
    ...{
        public Test()
        ...{
            //
            // TODO: 在此處添加建構函式邏輯
            //

            string ConnectionString = "Data Source=orcl; User Id=SCOTT; Password=scott";  //連接字串
            OracleConnection conn = new OracleConnection(ConnectionString);    //建立一個新串連
            
            try
            ...{
                conn.Open();    //開啟串連
                OracleCommand cmd = conn.CreateCommand();

                cmd.CommandText = "select * from emp";    //SQL語句
                OracleDataReader rs = cmd.ExecuteReader();

                while (rs.Read())    //讀取資料,如果rs.Read()返回為false的話,就說明到記錄集的尾部了
                ...{
                    MessageBox.Show(rs.GetString(1));
                }

                rs.Close();
            }

            catch (Exception e)
            ...{
                MessageBox.Show(e.Message);
            }
            finally
            ...{
                conn.Close();
            }
        }
    }
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.