搞定C# 建立ODBC資料來源

來源:互聯網
上載者:User
odbc|資料|資料來源 你觀察就可以發現用windows控制台的工具建立ODBC資料來源就是在註冊表中建立相應的值。
下面的函數可以建立SQL Server的ODBC資料來源!可以自己觀察註冊表,修改一部分值!
/// <summary>
        /// 註冊odbc資料來源
        /// </summary>
        /// <param name="DsnName">ODBC資料來源名稱,這裡要與SQL Server資料庫名保持一致</param>
        /// <param name="ServerName">SQL Server資料庫伺服器名</param>
        /// <returns>返回是否成功</returns>
        private bool RegODBC(string DsnName,string ServerName)
        {
            try
            {
                //在HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI中建立一個子鍵和相應的值
                Microsoft.Win32.RegistryKey  regkey=Microsoft.Win32.Registry.LocalMachine.OpenSubKey("software").OpenSubKey("ODBC").OpenSubKey("ODBC.INI",true).CreateSubKey(DsnName.Trim());
                regkey.SetValue("DataBase",DsnName.Trim());
                string strSystem32=Application.LocalUserAppDataPath.Substring(0,2);
                strSystem32=strSystem32+@"\WINDOWS\System32\SQLSRV32.dll";
                regkey.SetValue("Driver",strSystem32);
                regkey.SetValue("Server",ServerName.Trim());
                regkey.SetValue("Trusted_Connection","Yes");
                //在HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI\ODBC Data Sources中增加一個字串索引值
                regkey=Microsoft.Win32.Registry.LocalMachine.OpenSubKey("software").OpenSubKey("ODBC").OpenSubKey("ODBC.INI",true).OpenSubKey("ODBC Data Sources",true);
                regkey.SetValue(DsnName.Trim(),"SQL Server");
                return true;
            }
            catch(Exception Err)
            {
            }
            return false;
        }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.