Lib.test.zxjdbc.test_zxjdbc_dbapi20.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython Show documentation
Show all versions of jython Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
#!/usr/bin/env jython
"""
This is to be used with the DB API compatibility test available @
http://stuartbishop.net/Software/DBAPI20TestSuite/
"""
import dbapi20
import unittest
from com.ziclix.python.sql import zxJDBC as zxjdbc
class test_zxjdbc(dbapi20.DatabaseAPI20Test):
driver = zxjdbc
connect_args = ("jdbc:postgresql://localhost/ziclix", "bzimmer", "", "org.postgresql.Driver")
connect_kw_args = {}
def test_nextset(self): pass
def test_setoutputsize(self): pass
if __name__ == '__main__':
unittest.main()