Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_sqlite/
Dcursor.c450 int statement_type; in _pysqlite_query_execute() local
584 statement_type = detect_statement_type(operation_cstr); in _pysqlite_query_execute()
586 switch (statement_type) { in _pysqlite_query_execute()
675 if (rc == SQLITE_ROW || (rc == SQLITE_DONE && statement_type == STATEMENT_SELECT)) { in _pysqlite_query_execute()
714 switch (statement_type) { in _pysqlite_query_execute()
726 if (!multiple && statement_type == STATEMENT_INSERT) { in _pysqlite_query_execute()
/external/python/cpython3/Parser/pegen/
Dparse.c85 #define statement_type 1007 macro