リモート DB2 サーバーを使用して Linux 上で Web2py を実行する方法を知っている人はいますか?
私はpyodbcを使ってみましたが、それに関するドキュメントは非常に貧弱です
そのためのステップツーステップガイドが見つかりません。
私の設定ファイル:
odbcinst.ini:
[DB2]
Description = DB2 Driver
Driver = /opt/odbc_cli/clidriver/lib/libdb2.so
FileUsage = 1
DontDLClose = 1
odbc.ini
[test]
Description = Test to DB2
Driver = DB2
接続しようとしています:
>>> import pyodbc
>>> cnxn = pyodbc.connect('DRIVER={DB2};SERVER=172.16.1.35;DATABASE=log10;UID=db2admin;PWD=passs')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
pyodbc.Error: ('08001', '[08001] [unixODBC][IBM][CLI Driver] SQL30081N A communication error has been detected. Communication protocol being used: "TCP/IP". Communication API being used: "SOCKETS". Location where the error was detected: "127.0.0.1". Communication function detecting the error: "connect". Protocol specific error code(s): "111", "*", "*". SQLSTATE=08001\n (-30081) (SQLDriverConnect)')
私は何が欠けていますか?前もってありがとう
クリスチャン