c mysql 連線串 C 資料庫連線字串

2021-10-18 05:23:49 字數 2255 閱讀 3195

sa登陸:

"data source=.;initial catalog=資料庫;user id=sa,pwd=;";

windows登陸

data source=.;initial catalog=資料庫;integrated security=true

c#資料庫連線字串集合

(一)常用連線:

1.使用sqlconnection物件:

a. sql 驗證

public void sqlconnectionopen()

sqlconnection conn= new sqlconnection();

conn.connectionstring = "user id=sa;password=;initial catalog=northwind;datasource=localhost;connect timeout=20";

conn.open();

b. windows 身份驗證

public void sqlconnectionopen()

sqlconnection conn= new sqlconnection();

conn.connectionstring = "integrated security=sspi;initial catalog=northwind;datasource=localhost;connect timeout=20";

conn.open();

2.使用oledbconnection物件:

public void oledbconnectionopen()

oledbconnection conn = new oledbconnection();

conn.connectionstring="provider=microsoft.jet.oledb.4.0;datasource=c:\customer.mdb";

conn.open();

(二)其它:

1.odbc連線access本地資料庫

congoodday.open("driver=;"+"dbq=c:\a.mdb;"+

"uid=admin;"+"pwd=;");

2.odbc連線access系統資料庫

congoodday.open("driver=;"+"dbq=c:\a.mdb;"+

"systemdb=admin;"+"pwd=;");

3.odbc連線access系統資料庫

congoodday.open("driver=;"+"dbq=\\server\share\a.mdb;");

4.odbc連線excel系統資料庫

congoodday.open("driver=;"+"driverid=790;"+

"dbq=c:\a.xls;"+"defaultdir=c:\somepath;");

5.odbc連線oracle系統資料庫

congoodday.open("driver=;"+"server=oracleserver.world;"+

"uid=admin;"+"pwd=password;");

6.odbc連線sql servr

congoodday.open("driver=;"+"server=myserver;"+"database=mydatabasename;"

"uid=admin;"+"pwd=password;");

7.odbc連線visual foxpro

congoodday.open("driver=;"+

"sourcetype=dbc;"+"sourcedb=c:a.dbc;"+"exclusive=no;");

windows 身份驗證

建議使用 windows 身份驗證(有時也稱為「整合安全性」)連線到支援其的資料來源。連線字串中使用的語法根據提供程式的不同而不同。下表演示用於 .net framework 資料提供程式的 windows 身份驗證語法。

提供程式

語法sqlclient

integrated security=true;

-- or --

integrated security=sspi;

oledb

integrated security=sspi;

odbc

trusted_connection=yes;

oracleclient

integrated security=yes;

integrated security=true 用於 oledb 提供程式時會引發異常。

C MYSQL 資料庫連線池

只需要 db.start 即可啟動資料庫連線池 直接使用easy db中的靜態查詢方法 返回 string static std string querystr const char sql 返回 boolean static bool queryboolean const char sql 返回 ...

mysql資料庫連線串 資料庫連線串整理

常用jdbc驅動與連線字串 mysql driver com.mysql.jdbc.driver url jdbc mysql localhost 3306 mydb mysql url格式 jdbc mysql host port database 引數名1 引數值1 引數名2 引數值2 引數名稱...

資料庫連線串

connectionsql 訪問odbc資料 provider msdasql dsn dsnname uid username pwd userpassword 訪問oracle資料庫 provider msdaora data source servername user id username...