SQL Native Client ODBC Driver
標準安全連線
Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
您是否在使用SQL Server 2005 Express? 請在“Server”選項使用串連運算式“主機名稱\\SQLEXPRESS”。
受信的串連
Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;
\"Integrated Security=SSPI\" 與 \"Trusted_Connection=yes\" 是相同的。
串連到一個SQL Server執行個體
指定伺服器執行個體的運算式和其他SQL Server的連接字串相同。
Driver={SQL Native Client};Server=myServerName\\theInstanceName;Database=myDataBase;Trusted_Connection=yes;
指定使用者名稱和密碼
oConn.Properties(\"Prompt\") = adPromptAlways
Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase;
使用MARS (multiple active result sets)
Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;MARS_Connection=yes;
\"MultipleActiveResultSets=true\"與MARS_Connection=yes\"是相同的。
使用ADO.NET 2.0作為MARS的模組。 MARS不支援ADO.NET 1.0和ADO.NET 1.1。
驗證網路資料
Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;Encrypt=yes;
使用附加本機資料庫檔案的方式串連到本地SQL Server Express執行個體
Driver={SQL Native Client};Server=.\\SQLExpress;AttachDbFilename=c:\\asd\\qwe\\mydbfile.mdf; Database=dbname;Trusted_Connection=Yes;
為何要使用Database參數?如果同名的資料庫已經被附加,那麼SQL Server將不會重新附加。
使用附加本機資料檔案夾中的資料庫檔案的方式串連到本地SQL Server Express執行個體
Driver={SQL Native Client};Server=.\\SQLExpress;AttachDbFilename=|DataDirectory|mydbfile.mdf; Database=dbname;Trusted_Connection=Yes;
為何要使用Database參數?如果同名的資料庫已經被附加,那麼SQL Server將不會重新附加。
資料庫鏡像
Data Source=myServerAddress;Failover Partner=myMirrorServer;Initial Catalog=myDataBase;Integrated Security=True;
SQL Native Client OLE DB Provider
標準串連
Provider=SQLNCLI;Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;
您是否在使用SQL Server 2005 Express? 請在“Server”選項使用串連運算式“主機名稱\\SQLEXPRESS”。
受信的串連
Provider=SQLNCLI;Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes; [Page]
\"Integrated Security=SSPI\"與\"Trusted_Connection=yes\"相同
串連到SQL Server執行個體
指定伺服器執行個體的運算式和其他SQL Server的連接字串相同。
Provider=SQLNCLI;Server=myServerName\\theInstanceName;Database=myDataBase;Trusted_Connection=yes;
使用帳號和密碼
oConn.Properties(\"Prompt\") = adPromptAlways
oConn.Open \"Provider=SQLNCLI;Server=myServerAddress;DataBase=myDataBase;
使用MARS (multiple active result sets)
Provider=SQLNCLI;Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;MarsConn=yes;
\"MultipleActiveResultSets=true\"和\"MARS_Connection=yes\"是相同的。
使用ADO.NET 2.0作為MARS的模組。 MARS不支援ADO.NET 1.0和ADO.NET 1.1。
驗證網路資料
Provider=SQLNCLI;Server=myServerAddress;Database=myDataBase;Trusted_Connection=yes;Encrypt=yes;
使用附加本機資料庫檔案的方式串連到本地SQL Server Express執行個體
Provider=SQLNCLI;Server=.\\SQLExpress;AttachDbFilename=c:\\asd\\qwe\\mydbfile.mdf; Database=dbname;Trusted_Connection=Yes;
為何要使用Database參數?如果同名的資料庫已經被附加,那麼SQL Server將不會重新附加。
使用附加本機資料檔案夾中的資料庫檔案的方式串連到本地SQL Server Express執行個體
Provider=SQLNCLI;Server=.\\SQLExpress;AttachDbFilename=|DataDirectory|mydbfile.mdf; Database=dbname;Trusted_Connection=Yes;
為何要使用Database參數?如果同名的資料庫已經被附加,那麼SQL Server將不會重新附加。
資料庫鏡像
Data Source=myServerAddress;Failover Partner=myMirrorServer;Initial Catalog=myDataBase;Integrated Security=True;
SqlConnection (.NET)
標準串連
Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;
使用serverName\\instanceName作為資料來源可以指定SQL Server執行個體。
您是否在使用SQL Server 2005 Express? 請在“Server”選項使用串連運算式“主機名稱\\SQLEXPRESS”。
posted @ 2009-04-01 04:13 jiania 閱讀(...) 評論(...) 編輯 收藏
重新整理評論重新整理頁面返回頂部
部落格園首頁博問新聞快閃記憶體程式員招聘知識庫
Copyright 2013 jiania