Skip to content
Merged
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
4 changes: 4 additions & 0 deletions sqlalchemy_ibmi/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
Defaults to ``False``.
* ``trim_char_fields`` - If ``True``, all character fields will be returned
with trailing spaces truncated. Defaults to ``False``.
* ``ssl`` - If ``True`` a Secure Sockets Layer (SSL) connection will be used to
encrypt all client/server communication. If ``False``, only the password will
be encrypted. Defaults to ``False``.

create-engine arguments:

Expand Down Expand Up @@ -997,6 +1000,7 @@ def dbapi(cls):
"use_system_naming": ("NAM", to_bool, False),
"trim_char_fields": ("TRIMCHAR", to_bool, None),
"lob_threshold_kb": ("MAXFIELDLEN", int, None),
"ssl": ("SSL", to_bool, False)
}

DRIVER_KEYWORDS_SPECIAL = {
Expand Down
Loading