fieldinfo()
This page is part of MariaDB's Enterprise Documentation.
The parent of this page is: Connector/Python API
Topics on this page:
Overview
Returns a MariaDB field information object.
See also: MariaDB Connector/Python 1.1 and in 1.0
EXAMPLES
import mariadb
conn = mariadb.connect(
host = 'localhost',
user = 'root',
password = 'secret',
database = 'test',
)
finfo = mariadb.fieldinfo()
cursor = conn.cursor()
cursor.execute("SELECT * FROM sample")
# This prints each field name followed its type:
for fld in cursor.description:
print(fld[0], finfo.type(fld))
CHANGE HISTORY
Release Series | History |
---|---|
1.1 |
|
1.0 |
|