VB遠端連線資料庫字段設定

2022-03-23 03:17:39 字數 829 閱讀 9435

<1> : 連線字串為:

provider=sqloledb.1;password=密碼;persist security info=true;user id=使用者名稱;initial catalog=資料庫名稱data source=遠端主機ip

<2> :

1.引用ado

2.定義連線

dim conn as new connection

3.設定連線串

conn.open "provider=sqloledb;data source=資料庫伺服器ip或名稱;uid=登入使用者名稱;pwd=登入密碼;initial catalog=資料庫的名稱"

<3> : demo program :

private sub timer1_timer()

dim connx as new adodb.connection

'生成連線字串

connx.connectionstring = "provider=sqloledb.1;persist security info=false;user id=sa;password=jnjw2008;initial catalog=tygl;data source=192.168.0.119"

on error goto connerr

'連線資料庫

connx.open

msgbox "連線資料庫成功!服務已啟動...", vbinformation, "連線"

exit sub

connerr:

msgbox "連線資料庫錯誤!", vbinformation, "連線" 

end sub

VB連線遠端Oracle資料庫

1 instantclient basic windows.x64 11.2.0.4.0.zip和instantclient odbc windows.x64 11.2.0.4.0.zip 2.解壓兩個檔案到同乙個資料夾 instantclient 11 2 3.雙擊或者用命令列安裝 odbc in...

PL SQL遠端連線資料庫

關鍵的兩個步驟 往往我們會漏了第二個步驟 第一步 在本地安裝的oracle客戶端找到tnsnames.ora檔案 我的目錄是 f oracle product 10.2.0 client 1 network admin 然後新增如下 192.168.10.6 description address ...

navicate 遠端連線 資料庫

方法 一 本地登入mysql,更改 mysql 資料庫裡的 user 表裡的 host 項,將 localhost 改為 mysql u root proot mysql use mysql mysql update user set host where user root mysql selec...