Skip to content

Commit

Permalink
Minor doc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivanruth committed Jun 10, 2024
1 parent c45ae46 commit 5cd7315
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Besides the functionality required by DBAPI 2.0, pymonetdb also provides some
MonetDB-specific functionality, in particular file transfers. These are detailed
in the API section.

This documentation covers pymonetdb version |version|.

Contents
========
Expand Down
5 changes: 3 additions & 2 deletions pymonetdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ def connect( # noqa C901
binary : int
enable binary result sets when possible if > 0 (default: 1)
replysize : str
number of rows to retrieve immediately after query execution (default: 100, -1 means everything)
number of rows to retrieve immediately after query execution,
the rest will be fetched on demand (default: 100, -1 means everything)
maxprefetch : str
max. number of additional rows to fetch during Cursor.fetchone() or Cursor.fetchmany()
sock : str
Expand All @@ -121,7 +122,7 @@ def connect( # noqa C901
timezone : int
the time zone to use, in minutes east of UTC
dangerous_tls_nocheck : str
comma-separated list of certificate checks to skip during connecting:
comma-separated list of TLS certificate checks to skip during connecting:
'host': ignore host name mismatch,
'cert': ignore bad certificate chain
"""
Expand Down

0 comments on commit 5cd7315

Please sign in to comment.