本文主要講解Windows下串連Linux中的Informix資料庫的兩種實用方法:用MyEclipse直接連接Informix資料庫和用ODBC串連Informix資料庫。
項目中用到的開發相關資料主要有:
系統開發環境:Windows+Linux
Windows開發軟體:MyEclipse5.5+IBM Informix Client-SDK 2.90+FlashFXP
Linux軟體:Informix11資料庫
相關技術:JSP+Struts+JavaBean+Informix
方式一:MyEclipse直接連接Informix資料庫
準備檔案有:d:/ifxjdbc.jar
操作步驟:"開始"--“所有程式”--“MyEclipse 5.5”--"Windows"--"Open Perspctive"--"My Eclipse Database Explorer" 開啟DB Browser表單,滑鼠右鍵"new"建立一個資料庫連接
Driver name:自訂串連標識( 如informix.jdbc.IfxDriver)
nnection URL:jdbc:informix-sqli://192.168.1.249:9000/databasename:informixserver=informixservername;newcodeset=GBK,8859-1,819
User name: informix
Password: informix
Driver JARs :d:/ifjdbc.jar
其中192.168.1.249為Linux伺服器IP,databasename為Linux伺服器資料庫名和informixservername為Linux伺服器資料庫服務名稱
方式二:ODBC串連Informix資料庫
1.安裝IBM Informix Client-SDK 2.90
2.開啟控制台--資料來源(ODBC)--建立一個新的系統DSN,設定如下:
Server Name: Informix Server
Host Name :192.168.1.249
Service :sqlexecl
protocol :onsoctcp
Options :
Database Name :DataBaseName
User Id : Informix User Name
Password : Informix Password
3.設定Windows系統檔案service內容
C:/WINDOWS/system32/drivers/etc/service
man 9535/tcp #Remote Man Server
sqlexecl 9003/tcp #Remote Linux Informix Data Server
3.設定Windows系統檔案hosts內容
C:/WINDOWS/system32/drivers/etc/hosts
127.0.0.1 localhost
192.168.1.249 LinuxMachineName