gpt4 book ai didi

jdbc - 如何从 Jython 连接到数据库

转载 作者:行者123 更新时间:2023-12-04 23:06:28 24 4
gpt4 key购买 nike

我无法从我的 Jython 程序连接到数据库。纯 Java 程序可以连接,我可以从 Jython 连接到数据库,但只能使用 JDBC-ODBC 桥:“sun.jdbc.odbc.JdbcOdbcDriver”。如果我使用 native JDBC 驱动程序,我的程序将失败并出现“未找到驱动程序”异常。

代码:

import sys
from com.ziclix.python.sql import zxJDBC

connection1 = zxJDBC.connect('jdbc:odbc:test_odbc', 'postgres', 'postgres', 'sun.jdbc.odbc.JdbcOdbcDriver')
print "JDBC:ODBC connection set"
connection2 = zxJDBC.connect('jdbc:postgresql://127.0.0.1/test?stringtype=unspecified', 'postgres', 'postgres', 'org.postgresql.Driver')
print "JDBC native connection set"

输出:

C:\tools\pyscripts\scripts\db_examples>jython --version
Jython 2.5b1 (trunk:5903:5905, Jan 9 2009, 16:01:29)
[Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.6.0_11

C:\tools\pyscripts\scripts\db_examples>jython pg_test.py
JDBC:ODBC connection set
Traceback (most recent call last):
File "pg_test.py", line 6, in <module>
connection2 = zxJDBC.connect('jdbc:postgresql://127.0.0.1/test?stringtype=un
specified', 'postgres', 'postgres', 'org.postgresql.Driver')
zxJDBC.DatabaseError: driver [org.postgresql.Driver] not found

我认为我的 CLASSPATH 设置正确,而 native Java 程序可以使用 native 驱动程序连接到该数据库。我发现所有 JDBC 驱动程序在 cachedir\packages 中都有 .pkc 文件。

我应该设置什么来获取数据库连接?

最佳答案

我会自己回答:

Jython 2.5b1 中存在错误:Jython has problems to dynamically loading classes when installed on the boot classpath

如果我使用 --verify 标志调用它,我就能够运行我的程序。

错误在 Jython 2.5b3 中消失了

关于jdbc - 如何从 Jython 连接到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/468763/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com