ADO.NET 串連資料庫字串小結(Oracle、SqlServer、Access、ODBC)

來源:互聯網
上載者:User

ADO.NET

串連到 SQL Server
SQL Server .NET Framework 資料提供者支援類似於 OLE DB (ADO) 連接字串格式的連接字串格式。 複製代碼 代碼如下:using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
// Do work here.
}

串連到 OLE DB 資料來源
OLE DB .NET Framework 資料提供者通過 OleDbConnection 對象提供與使用 OLE DB 公開的資料來源的串連以及與 Microsoft SQL Server 6.x 或較早版本(通過用於 SQL Server 的 OLE DB 提供者 (SQLOLEDB))的串連。 複製代碼 代碼如下:using (OleDbConnection connection = new OleDbConnection(connectionString))
{
connection.Open();
// Do work here.
}

串連到 ODBC 資料來源
ODBC .NET Framework 資料提供者通過 OdbcConnection 對象提供與使用 ODBC 公開的資料來源的串連。 複製代碼 代碼如下:using (OdbcConnection connection = new OdbcConnection(connectionString))
{
connection.Open();
// Do work here.
}

串連到 Oracle 資料來源
Oracle .NET Framework 資料提供者使用 OracleConnection 對象提供與 Oracle 資料來源的串連。 複製代碼 代碼如下:using (OracleConnection connection = new OracleConnection(connectionString))
{
connection.Open();
// Do work here.
}
OracleConnection nwindConn = new OracleConnection("Data Source=MyOracleServer;Integrated Security=yes;");
nwindConn.Open();

以下是串連執行個體:

ACCESS 複製代碼 代碼如下:stringconStr=@"provider=microsoft.Jet.OleDb.4.0;datasource=d:\\accessData.mdb;uid=sa;pwd=dd";

SQL SERVER 複製代碼 代碼如下:stringconStr=@"Server=bwj;database=demo;uid=sa;pwd=";

ORACLE 複製代碼 代碼如下:stringconStr=@"Provider=MSDAORA.1;Password=pwd;UserID=user_name;Data Source=link_str"

相關文章

聯繫我們

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