Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion jaydebeapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,8 @@ def to_py(rs, col):

_to_boolean = _java_to_py('booleanValue')

_to_string = _java_to_py('toString')

_to_decimal = _java_to_py_bigdecimal()

def _init_types(types_map):
Expand Down Expand Up @@ -719,5 +721,6 @@ def _init_converters(types_map):
'INTEGER': _to_int,
'SMALLINT': _to_int,
'BOOLEAN': _to_boolean,
'BIT': _to_boolean
'BIT': _to_boolean,
'OTHER': _to_string
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
setup(
#basic package data
name = 'JayDeBeApi',
version = '1.2.3',
version = '1.2.4',
author = 'Bastian Bowe',
author_email = 'bastian.dev@gmail.com',
license = 'GNU LGPL',
Expand Down