Home
last modified time | relevance | path

Searched refs:coltype (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/_sqlite/
Dcursor.c234 int coltype; in _pysqlite_fetch_one_row() local
282 coltype = sqlite3_column_type(self->statement->st, i); in _pysqlite_fetch_one_row() local
284 if (coltype == SQLITE_NULL) { in _pysqlite_fetch_one_row()
287 } else if (coltype == SQLITE_INTEGER) { in _pysqlite_fetch_one_row()
289 } else if (coltype == SQLITE_FLOAT) { in _pysqlite_fetch_one_row()
291 } else if (coltype == SQLITE_TEXT) { in _pysqlite_fetch_one_row()
/external/python/cpython2/Modules/_sqlite/
Dcursor.c296 int coltype; in _pysqlite_fetch_one_row() local
349 coltype = sqlite3_column_type(self->statement->st, i); in _pysqlite_fetch_one_row() local
351 if (coltype == SQLITE_NULL) { in _pysqlite_fetch_one_row()
354 } else if (coltype == SQLITE_INTEGER) { in _pysqlite_fetch_one_row()
356 } else if (coltype == SQLITE_FLOAT) { in _pysqlite_fetch_one_row()
358 } else if (coltype == SQLITE_TEXT) { in _pysqlite_fetch_one_row()