Home
last modified time | relevance | path

Searched refs:PARSE_DECLTYPES (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Modules/_sqlite/
Dmodule.h52 #define PARSE_DECLTYPES 1 macro
Dmodule.c285 ADD_INT(PARSE_DECLTYPES); in add_integer_constants()
Dcursor.c196 if (!converter && self->connection->detect_types & PARSE_DECLTYPES) { in pysqlite_build_row_cast_map()
/third_party/python/Lib/sqlite3/test/
Dregression.py125 con = sqlite.connect(":memory:",detect_types=sqlite.PARSE_DECLTYPES)
141 con = sqlite.connect(":memory:",detect_types=sqlite.PARSE_DECLTYPES)
314 con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_DECLTYPES)
Dtypes.py111 self.con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_DECLTYPES)
404 self.con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_DECLTYPES)
/third_party/python/Doc/includes/sqlite3/
Dpysqlite_datetime.py4 con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES|sqlite3.PARSE_COLNAMES)
Dconverter_point.py27 con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES)
/third_party/python/Doc/library/
Dsqlite3.rst182 .. data:: PARSE_DECLTYPES
236 any combination of :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES` to turn
1049 for the constants :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES`.