Lines Matching refs:statement
33 static pysqlite_StatementKind detect_statement_type(char* statement) in detect_statement_type() argument
39 src = statement; in detect_statement_type()
82 Py_CLEAR(self->statement); in pysqlite_cursor_init()
121 if (self->statement) { in pysqlite_cursor_dealloc()
122 pysqlite_statement_reset(self->statement); in pysqlite_cursor_dealloc()
123 Py_DECREF(self->statement); in pysqlite_cursor_dealloc()
174 for (i = 0; i < sqlite3_column_count(self->statement->st); i++) { in pysqlite_build_row_cast_map()
178 colname = sqlite3_column_name(self->statement->st, i); in pysqlite_build_row_cast_map()
201 decltype = sqlite3_column_decltype(self->statement->st, i); in pysqlite_build_row_cast_map()
312 numcols = sqlite3_data_count(self->statement->st); in _pysqlite_fetch_one_row()
331 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row()
332 val_str = (const char*)sqlite3_column_blob(self->statement->st, i); in _pysqlite_fetch_one_row()
349 coltype = sqlite3_column_type(self->statement->st, i); in _pysqlite_fetch_one_row()
355 converted = _pysqlite_long_from_int64(sqlite3_column_int64(self->statement->st, i)); in _pysqlite_fetch_one_row()
357 converted = PyFloat_FromDouble(sqlite3_column_double(self->statement->st, i)); in _pysqlite_fetch_one_row()
359 val_str = (const char*)sqlite3_column_text(self->statement->st, i); in _pysqlite_fetch_one_row()
360 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row()
368 colname = sqlite3_column_name(self->statement->st, i); in _pysqlite_fetch_one_row()
383 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row()
391 memcpy(raw_buffer, sqlite3_column_blob(self->statement->st, i), nbytes); in _pysqlite_fetch_one_row()
526 if (self->statement != NULL) { in _pysqlite_query_execute()
528 rc = pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
556 if (self->statement) { in _pysqlite_query_execute()
557 (void)pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
560 Py_XSETREF(self->statement, in _pysqlite_query_execute()
564 if (!self->statement) { in _pysqlite_query_execute()
568 if (self->statement->in_use) { in _pysqlite_query_execute()
569 Py_SETREF(self->statement, in _pysqlite_query_execute()
571 if (!self->statement) { in _pysqlite_query_execute()
574 rc = pysqlite_statement_create(self->statement, self->connection, operation); in _pysqlite_query_execute()
576 Py_CLEAR(self->statement); in _pysqlite_query_execute()
581 pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
582 pysqlite_statement_mark_dirty(self->statement); in _pysqlite_query_execute()
626 pysqlite_statement_mark_dirty(self->statement); in _pysqlite_query_execute()
628 pysqlite_statement_bind_parameters(self->statement, parameters, allow_8bit_chars); in _pysqlite_query_execute()
636 rc = pysqlite_step(self->statement->st, self->connection); in _pysqlite_query_execute()
642 rc = pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
646 rc = pysqlite_statement_recompile(self->statement, parameters); in _pysqlite_query_execute()
651 (void)pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
664 (void)pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
678 numcols = sqlite3_column_count(self->statement->st); in _pysqlite_query_execute()
690 …e_SetItem(descriptor, 0, _pysqlite_build_column_name(sqlite3_column_name(self->statement->st, i))); in _pysqlite_query_execute()
710 pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
711 Py_CLEAR(self->statement); in _pysqlite_query_execute()
738 rc = pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
784 sqlite3_stmt* statement; in pysqlite_cursor_executescript() local
824 &statement, in pysqlite_cursor_executescript()
835 rc = pysqlite_step(statement, self->connection); in pysqlite_cursor_executescript()
840 (void)sqlite3_finalize(statement); in pysqlite_cursor_executescript()
845 rc = sqlite3_finalize(statement); in pysqlite_cursor_executescript()
889 if (self->statement) { in pysqlite_cursor_iternext()
890 (void)pysqlite_statement_reset(self->statement); in pysqlite_cursor_iternext()
891 Py_CLEAR(self->statement); in pysqlite_cursor_iternext()
906 if (self->statement) { in pysqlite_cursor_iternext()
907 rc = pysqlite_step(self->statement->st, self->connection); in pysqlite_cursor_iternext()
909 (void)pysqlite_statement_reset(self->statement); in pysqlite_cursor_iternext()
1026 if (self->statement) { in pysqlite_cursor_close()
1027 (void)pysqlite_statement_reset(self->statement); in pysqlite_cursor_close()
1028 Py_CLEAR(self->statement); in pysqlite_cursor_close()