mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-08-07 11:39:43 +00:00

- added a thin python wrapper around mariadb module - added constansts under mariadb.constants (CLIENT, CURSOR, INDICATOR) - bench and test are now in testing subdirectory - updated documentation
14 lines
273 B
Python
14 lines
273 B
Python
'''
|
|
MariaDB indicator variables
|
|
|
|
Indicator values are used in executemany() method of cursor class to
|
|
indicate special values.
|
|
'''
|
|
|
|
import mariadb._mariadb as m
|
|
|
|
NULL = m.indicator_null
|
|
DEFAULT = m.indicator_default
|
|
IGNORE = m.indicator_ignore
|
|
IGNORE_ROW = m.indicator_row
|