連線SQL Server 資料庫的三種方式

2022-02-26 04:35:20 字數 1095 閱讀 2879

涉及到配置檔案的連線方法:

方式一:

在配置檔案中:

connectionstring

" value="

data source=伺服器的名稱;initial catalog=要連線的資料庫的名稱;user id=資料庫登入名;password=資料庫登入密碼"

/>

在**中獲取資料庫連線字串:

public

static

readonly

connectionstring

"]; //

connectionstring是配置檔案中key的值

方式二:

在配置檔案中:

"mydb

" connectionstring="

data source=伺服器的名稱;initial catalog=要連線的資料庫的名稱;user id=資料庫登入名;password=資料庫登入密碼

"providername="

system.data.sqlclient

"/>

在**中獲得資料庫連線字串:

public

static

readonly

string str = configurationmanager.connectionstrings["

mydb

"].tostring(); //

mydb是配置檔案中name的值

不涉及到配置檔案的連線方式:

直接在建立資料庫連線物件後,給該物件的connectionstring屬性賦值即可。

sqlconnection sqlconn = new

sqlconnection();

sqlconn.connectionstring = @"

data source=伺服器的名稱;initial catalog=要連線的資料庫的名稱;user id=資料庫登入名;password=資料庫登入密碼

";

資料庫連線 SQLServer

private static logger logger logger.getlogger test.class 驅動 private static final string driver com.microsoft.sqlserver.jdbc.sqlserverdriver 連線路徑 priva...

sql server資料庫連線

建立資料庫 表以及有關的sql語句 建立資料庫 create database winstudent 建立表 use winstudent goif exists select from sysobjects where name stuinfo drop table stuinfo create ...

perl 連線sql server資料庫

本質上是和連線mysql一樣的,但是需要配置很多東西 先看 use dbi my dsn driver server 192.168.1.213 database msy uid perlname pwd x my dbh dbi connect dbi odbc dsn or die couldn...