Removed cursor destructor to avoid issues with some JPype versions
parent
34ab8a0265
commit
4baedb8064
21
README.rst
21
README.rst
|
|
@ -106,6 +106,12 @@ Here is an example:
|
|||
>>> curs.close()
|
||||
>>> conn.close()
|
||||
|
||||
If you're having trouble getting this work check if your ``JAVA_HOME``
|
||||
environmentvariable is set correctly. For example I have to set it on
|
||||
my Ubuntu machine like this ::
|
||||
|
||||
$ JAVA_HOME=/usr/lib/jvm/java-8-openjdk python
|
||||
|
||||
An alternative way to establish connection using connection
|
||||
properties:
|
||||
|
||||
|
|
@ -115,12 +121,16 @@ properties:
|
|||
... 'other_property': "foobar"},
|
||||
... "/path/to/hsqldb.jar",)
|
||||
|
||||
Also using the ``with`` statement might be handy:
|
||||
|
||||
If you're having trouble getting this work check if your ``JAVA_HOME``
|
||||
environmentvariable is set correctly. For example I have to set it on
|
||||
my Ubuntu machine like this ::
|
||||
|
||||
$ JAVA_HOME=/usr/lib/jvm/java-8-openjdk python
|
||||
>>> with jaydebeapi.connect("org.hsqldb.jdbcDriver",
|
||||
... "jdbc:hsqldb:mem:.",
|
||||
... ["SA", ""],
|
||||
... "/path/to/hsqldb.jar",) as conn:
|
||||
... with conn.cursor() as curs:
|
||||
... curs.execute("select count(*) from CUSTOMER")
|
||||
... curs.fetchall()
|
||||
[(1,)]
|
||||
|
||||
Supported databases
|
||||
===================
|
||||
|
|
@ -164,6 +174,7 @@ Changelog
|
|||
- Make pip install for Python 2 work by changing JPype1 requirement to older
|
||||
version
|
||||
- Make pip install for Jython work by removing JPype1 requirement for Jython
|
||||
- Removed cursor destructor to avoid issues with some JPype versions
|
||||
|
||||
- 1.2.2 - 2020-06-04
|
||||
|
||||
|
|
|
|||
|
|
@ -517,10 +517,6 @@ class Cursor(object):
|
|||
self._meta = None
|
||||
self._description = None
|
||||
|
||||
# TODO: this is a possible way to close the open result sets
|
||||
# but I'm not sure when __del__ will be called
|
||||
__del__ = _close_last
|
||||
|
||||
def _set_stmt_parms(self, prep_stmt, parameters):
|
||||
for i in range(len(parameters)):
|
||||
# print (i, parameters[i], type(parameters[i]))
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class IntegrationTestBase(object):
|
|||
if ";" in i:
|
||||
stmts.append(" ".join(stmt))
|
||||
stmt = []
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
for i in stmts:
|
||||
cursor.execute(i)
|
||||
|
||||
|
|
@ -68,18 +68,19 @@ class IntegrationTestBase(object):
|
|||
raise NotImplementedError
|
||||
|
||||
def tearDown(self):
|
||||
cursor = self.conn.cursor()
|
||||
cursor.execute("drop table ACCOUNT");
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("drop table ACCOUNT")
|
||||
self.conn.close()
|
||||
|
||||
def test_execute_and_fetch_no_data(self):
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
stmt = "select * from ACCOUNT where ACCOUNT_ID is null"
|
||||
cursor.execute(stmt)
|
||||
self.assertEqual(cursor.fetchall(), [])
|
||||
result = cursor.fetchall()
|
||||
self.assertEqual(result, [])
|
||||
|
||||
def test_execute_and_fetch(self):
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("select ACCOUNT_ID, ACCOUNT_NO, BALANCE, BLOCKING " \
|
||||
"from ACCOUNT")
|
||||
result = cursor.fetchall()
|
||||
|
|
@ -87,14 +88,14 @@ class IntegrationTestBase(object):
|
|||
(u'2009-09-11 14:15:22.123456', 19, 12.9, 1)])
|
||||
|
||||
def test_execute_and_fetch_parameter(self):
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("select ACCOUNT_ID, ACCOUNT_NO, BALANCE, BLOCKING " \
|
||||
"from ACCOUNT where ACCOUNT_NO = ?", (18,))
|
||||
result = cursor.fetchall()
|
||||
self.assertEqual(result, [(u'2009-09-10 14:15:22.123456', 18, 12.4, None)])
|
||||
|
||||
def test_execute_and_fetchone(self):
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("select ACCOUNT_ID, ACCOUNT_NO, BALANCE, BLOCKING " \
|
||||
"from ACCOUNT order by ACCOUNT_NO")
|
||||
result = cursor.fetchone()
|
||||
|
|
@ -105,7 +106,7 @@ class IntegrationTestBase(object):
|
|||
"""Expect the descriptions property being reset when no query
|
||||
has been made via execute method.
|
||||
"""
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("select * from ACCOUNT")
|
||||
self.assertIsNotNone(cursor.description)
|
||||
cursor.fetchone()
|
||||
|
|
@ -113,14 +114,14 @@ class IntegrationTestBase(object):
|
|||
self.assertIsNone(cursor.description)
|
||||
|
||||
def test_execute_and_fetchone_after_end(self):
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("select * from ACCOUNT where ACCOUNT_NO = ?", (18,))
|
||||
cursor.fetchone()
|
||||
result = cursor.fetchone()
|
||||
self.assertIsNone(result)
|
||||
|
||||
def test_execute_and_fetchmany(self):
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("select ACCOUNT_ID, ACCOUNT_NO, BALANCE, BLOCKING " \
|
||||
"from ACCOUNT order by ACCOUNT_NO")
|
||||
result = cursor.fetchmany()
|
||||
|
|
@ -131,7 +132,6 @@ class IntegrationTestBase(object):
|
|||
# cursor.close()
|
||||
|
||||
def test_executemany(self):
|
||||
cursor = self.conn.cursor()
|
||||
stmt = "insert into ACCOUNT (ACCOUNT_ID, ACCOUNT_NO, BALANCE) " \
|
||||
"values (?, ?, ?)"
|
||||
parms = (
|
||||
|
|
@ -139,11 +139,11 @@ class IntegrationTestBase(object):
|
|||
( '2009-09-11 14:15:22.123451', 21, 13.2 ),
|
||||
( '2009-09-11 14:15:22.123452', 22, 13.3 ),
|
||||
)
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.executemany(stmt, parms)
|
||||
self.assertEqual(cursor.rowcount, 3)
|
||||
|
||||
def test_execute_types(self):
|
||||
cursor = self.conn.cursor()
|
||||
stmt = "insert into ACCOUNT (ACCOUNT_ID, ACCOUNT_NO, BALANCE, " \
|
||||
"BLOCKING, DBL_COL, OPENED_AT, VALID, PRODUCT_NAME) " \
|
||||
"values (?, ?, ?, ?, ?, ?, ?, ?)"
|
||||
|
|
@ -158,6 +158,7 @@ class IntegrationTestBase(object):
|
|||
product_name = u'Savings account'
|
||||
parms = (account_id, account_no, balance, blocking, dbl_col,
|
||||
opened_at, valid, product_name)
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute(stmt, parms)
|
||||
stmt = "select ACCOUNT_ID, ACCOUNT_NO, BALANCE, BLOCKING, " \
|
||||
"DBL_COL, OPENED_AT, VALID, PRODUCT_NAME " \
|
||||
|
|
@ -165,13 +166,11 @@ class IntegrationTestBase(object):
|
|||
parms = (20, )
|
||||
cursor.execute(stmt, parms)
|
||||
result = cursor.fetchone()
|
||||
cursor.close()
|
||||
exp = ( '2010-01-26 14:31:59', account_no, balance, blocking,
|
||||
dbl_col, '2008-02-27', valid, product_name )
|
||||
self.assertEqual(result, exp)
|
||||
|
||||
def test_execute_type_time(self):
|
||||
cursor = self.conn.cursor()
|
||||
stmt = "insert into ACCOUNT (ACCOUNT_ID, ACCOUNT_NO, BALANCE, " \
|
||||
"OPENED_AT_TIME) " \
|
||||
"values (?, ?, ?, ?)"
|
||||
|
|
@ -181,24 +180,24 @@ class IntegrationTestBase(object):
|
|||
balance = 1.2
|
||||
opened_at_time = d.Time(13, 59, 59)
|
||||
parms = (account_id, account_no, balance, opened_at_time)
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute(stmt, parms)
|
||||
stmt = "select ACCOUNT_ID, ACCOUNT_NO, BALANCE, OPENED_AT_TIME " \
|
||||
"from ACCOUNT where ACCOUNT_NO = ?"
|
||||
parms = (20, )
|
||||
cursor.execute(stmt, parms)
|
||||
result = cursor.fetchone()
|
||||
cursor.close()
|
||||
exp = ( '2010-01-26 14:31:59', account_no, balance, '13:59:59' )
|
||||
self.assertEqual(result, exp)
|
||||
|
||||
def test_execute_different_rowcounts(self):
|
||||
cursor = self.conn.cursor()
|
||||
stmt = "insert into ACCOUNT (ACCOUNT_ID, ACCOUNT_NO, BALANCE) " \
|
||||
"values (?, ?, ?)"
|
||||
parms = (
|
||||
( '2009-09-11 14:15:22.123450', 20, 13.1 ),
|
||||
( '2009-09-11 14:15:22.123452', 22, 13.3 ),
|
||||
)
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.executemany(stmt, parms)
|
||||
self.assertEqual(cursor.rowcount, 2)
|
||||
parms = ( '2009-09-11 14:15:22.123451', 21, 13.2 )
|
||||
|
|
@ -214,18 +213,17 @@ class SqliteTestBase(IntegrationTestBase):
|
|||
self.sql_file(os.path.join(_THIS_DIR, 'data', 'insert.sql'))
|
||||
|
||||
def test_execute_type_blob(self):
|
||||
cursor = self.conn.cursor()
|
||||
stmt = "insert into ACCOUNT (ACCOUNT_ID, ACCOUNT_NO, BALANCE, " \
|
||||
"STUFF) values (?, ?, ?, ?)"
|
||||
binary_stuff = 'abcdef'.encode('UTF-8')
|
||||
stuff = self.dbapi.Binary(binary_stuff)
|
||||
parms = ('2009-09-11 14:15:22.123450', 20, 13.1, stuff)
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute(stmt, parms)
|
||||
stmt = "select STUFF from ACCOUNT where ACCOUNT_NO = ?"
|
||||
parms = (20, )
|
||||
cursor.execute(stmt, parms)
|
||||
result = cursor.fetchone()
|
||||
cursor.close()
|
||||
value = result[0]
|
||||
self.assertEqual(value, memoryview(binary_stuff))
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ class MockTest(unittest.TestCase):
|
|||
if isinstance(db_api_type, jaydebeapi.DBAPITypeObject):
|
||||
for jsql_type_name in db_api_type.values:
|
||||
self.conn.jconn.mockType(jsql_type_name)
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("dummy stmt")
|
||||
cursor.fetchone()
|
||||
verify = self.conn.jconn.verifyResultSet()
|
||||
|
|
@ -52,35 +52,35 @@ class MockTest(unittest.TestCase):
|
|||
|
||||
def test_ancient_date_mapped(self):
|
||||
self.conn.jconn.mockDateResult(1899, 12, 31)
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("dummy stmt")
|
||||
result = cursor.fetchone()
|
||||
self.assertEquals(result[0], "1899-12-31")
|
||||
|
||||
def test_decimal_scale_zero(self):
|
||||
self.conn.jconn.mockBigDecimalResult(12345, 0)
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("dummy stmt")
|
||||
result = cursor.fetchone()
|
||||
self.assertEquals(str(result[0]), "12345")
|
||||
|
||||
def test_decimal_places(self):
|
||||
self.conn.jconn.mockBigDecimalResult(12345, 1)
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("dummy stmt")
|
||||
result = cursor.fetchone()
|
||||
self.assertEquals(str(result[0]), "1234.5")
|
||||
|
||||
def test_double_decimal(self):
|
||||
self.conn.jconn.mockDoubleDecimalResult(1234.5)
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
cursor.execute("dummy stmt")
|
||||
result = cursor.fetchone()
|
||||
self.assertEquals(str(result[0]), "1234.5")
|
||||
|
||||
def test_sql_exception_on_execute(self):
|
||||
self.conn.jconn.mockExceptionOnExecute("java.sql.SQLException", "expected")
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
try:
|
||||
cursor.execute("dummy stmt")
|
||||
self.fail("expected exception")
|
||||
|
|
@ -89,7 +89,7 @@ class MockTest(unittest.TestCase):
|
|||
|
||||
def test_runtime_exception_on_execute(self):
|
||||
self.conn.jconn.mockExceptionOnExecute("java.lang.RuntimeException", "expected")
|
||||
cursor = self.conn.cursor()
|
||||
with self.conn.cursor() as cursor:
|
||||
try:
|
||||
cursor.execute("dummy stmt")
|
||||
self.fail("expected exception")
|
||||
|
|
|
|||
Loading…
Reference in New Issue