Sql Server連線資料庫

2021-10-08 11:52:58 字數 1351 閱讀 4157

常用的連線資料庫的兩種方法:

在使用**連線資料庫之前 需要引入命名空間

using system.data;

using system.data.sqlclient;

使用sql server驗證方法連線資料庫:

sqlconnection con = new sqlconnection(「server=.;database=itcast;uid=sa;pwd=***xx;」);

注釋: con 是連線資料庫語句的名稱

server 是資料庫伺服器名

database 資料庫名

uid 是預設使用者名稱

pwd 是密碼

使用windows驗證方式連線資料庫:

sqlconnection con = new sqlconnection(「data source=.;initial catalog=itcast;integrated security=sspi;」);

注釋: data source 是資料庫伺服器名

initial catalog 是資料庫名

integrated security是windows方式 這裡可以用sspi 也可以是true 都表示是windows方式驗證

con.open();

con.close();

連線開啟和關閉 用完後盡快關閉 以免占用資源

在 .config 檔案裡連線資料庫**(好處:避免頁面**裡出現重複連線資料庫的現象):

在 connectionstring中插入選中**:

在書寫頁面中 新增連線字串:

private string constr = configurationmanager.connectionstrings[「connectionstr」].connectionstring;

注釋: connectionstr 是連線字串名 和上面中的 name 名必須一致

新增引用

在頁面中引入命名空間:

using system.configuration;

每次使用時只需新增連線語句即可:

sqlconnection con = new sqlconnection(constr);

注釋:constr 和上面連線語句的名字一致

SQL SERVER連線資料庫問題

最近幾天發現乙個怪問題,就是當我把筆記本從開發室拿到寢室後我的asp程式無法連線sql server資料庫,經過分析判斷,發現是沒有插網線所致。但由於我開發的這個專案是屬於保密性質的,此程式所在的計算機不能上網,不可能不用sql server作資料庫吧,後經過嘗試發現只要把連線位址改為計算機名就行!...

連線資料庫

2 documents 目錄就是我們可以用來寫入並儲存檔案得地方,一般可通過 nsarray paths nssearchpathfordirectoriesindomains nsdocumentdirectory,nsuserdomainmask,yes nsstring documentsdi...

連線資料庫

1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl orcl為資料庫的sid strin...