Home
last modified time | relevance | path

Searched refs:PARSE_COLNAMES (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Doc/includes/sqlite3/
Dparse_colnames.py4 con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_COLNAMES)
Dpysqlite_datetime.py4 con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES|sqlite3.PARSE_COLNAMES)
Dconverter_point.py39 con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_COLNAMES)
/external/python/cpython2/Modules/_sqlite/
Dmodule.h57 #define PARSE_COLNAMES 2 macro
Dmodule.c263 {"PARSE_COLNAMES", PARSE_COLNAMES},
Dcursor.c178 if (self->connection->detect_types & PARSE_COLNAMES) { in pysqlite_build_row_cast_map()
/external/python/cpython2/Lib/sqlite3/test/
Dtypes.py258 self.con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_COLNAMES)
345 self.con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_COLNAMES)
Dregression.py42 con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_COLNAMES)
/external/python/cpython2/Doc/library/
Dsqlite3.rst152 .. data:: PARSE_COLNAMES
188 any combination of :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES` to turn
819 for the constants :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES`.