Skip to content
Merged
Changes from 1 commit
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 ``1`` a Secure Sockets Layer (SSL) connection will be used to
encrypt all client/server communication. If ``0``, only the password will
be encrypted. Defaults to ``0``.
Comment thread
Dynatrace-James-Kitson marked this conversation as resolved.
Outdated

create-engine arguments:

Expand Down Expand Up @@ -921,6 +924,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", int, 0)
Comment thread
Dynatrace-James-Kitson marked this conversation as resolved.
Outdated
}

DRIVER_KEYWORDS_SPECIAL = {
Expand Down