Home
last modified time | relevance | path

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

/third_party/python/Modules/_sqlite/
H A Dcursor.c327 int coltype; in _pysqlite_fetch_one_row() local
381 coltype = sqlite3_column_type(self->statement->st, i); in _pysqlite_fetch_one_row() local
383 if (coltype == SQLITE_NULL) { in _pysqlite_fetch_one_row()
385 } else if (coltype == SQLITE_INTEGER) { in _pysqlite_fetch_one_row()
387 } else if (coltype == SQLITE_FLOAT) { in _pysqlite_fetch_one_row()
389 } else if (coltype == SQLITE_TEXT) { in _pysqlite_fetch_one_row()
426 /* coltype == SQLITE_BLOB */ in _pysqlite_fetch_one_row()

Completed in 3 milliseconds