C 連線db2資料庫

2022-03-27 18:32:35 字數 755 閱讀 3949

string strsql = @"

select phone_no from no_store where id<5";

string strconn = "

provider=ibmdadb2;data source=資料庫名;uid=使用者名稱;pwd=密碼;";

using (oledbconnection conn = new

oledbconnection(strconn))}}

catch

(exception ex)

}console.read();

string strsql = @"

select phone_no from no_store where id<5";

string strconn = "

database=資料庫名;uid=使用者名稱;pwd=密碼;";

using (db2connection conn = new

db2connection(strconn))}}

catch

(exception ex)

}console.read();

(1)兩種方式的資料庫操作物件可以參考c#連線sqlserver的資料庫物件。

(2)如果db2資料庫在遠端伺服器,連線字串中的資料庫名、使用者名稱、密碼為db2編目到本地的資料庫名、使用者名稱、密碼。

(3)使用ibm.data.db2,必須引用該程式集。

C 連線db2資料庫

string strsql select phone no from no store where id 5 string strconn provider ibmdadb2 data source 資料庫名 uid 使用者名稱 pwd 密碼 using oledbconnection conn n...

DB2資料庫連線配置

關於命令列配置db2資料庫連線 1.先定義乙個和遠端伺服器連線的node節點 catalog tcpip node node的名字 自己定義 remote 伺服器ip server 伺服器端口號 2.定義乙個資料庫的連線,並保證著個連線放在前面定義好的node節點上 catalog database...

Python連線DB2資料庫基本

看 說話,這裡使用的python版本為3.5首先需要匯入的ibm的資料報 ibm db 簡單使用如下,詳細專案看另外一篇。coding import ibm db import time conn ibm db.connect database edw hostname 輸入ip port 埠 pr...