• Home
  • Raw
  • Download

Lines Matching refs:statement

43     Py_CLEAR(self->statement);  in pysqlite_cursor_init()
78 if (self->statement) { in pysqlite_cursor_dealloc()
79 pysqlite_statement_reset(self->statement); in pysqlite_cursor_dealloc()
80 Py_DECREF(self->statement); in pysqlite_cursor_dealloc()
139 for (i = 0; i < sqlite3_column_count(self->statement->st); i++) { in pysqlite_build_row_cast_map()
143 colname = sqlite3_column_name(self->statement->st, i); in pysqlite_build_row_cast_map()
163 decltype = sqlite3_column_decltype(self->statement->st, i); in pysqlite_build_row_cast_map()
241 numcols = sqlite3_data_count(self->statement->st); in _pysqlite_fetch_one_row()
260 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row()
261 val_str = (const char*)sqlite3_column_blob(self->statement->st, i); in _pysqlite_fetch_one_row()
274 coltype = sqlite3_column_type(self->statement->st, i); in _pysqlite_fetch_one_row()
280 converted = _pysqlite_long_from_int64(sqlite3_column_int64(self->statement->st, i)); in _pysqlite_fetch_one_row()
282 converted = PyFloat_FromDouble(sqlite3_column_double(self->statement->st, i)); in _pysqlite_fetch_one_row()
284 val_str = (const char*)sqlite3_column_text(self->statement->st, i); in _pysqlite_fetch_one_row()
285 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row()
290 colname = sqlite3_column_name(self->statement->st, i); in _pysqlite_fetch_one_row()
313 nbytes = sqlite3_column_bytes(self->statement->st, i); in _pysqlite_fetch_one_row()
315 sqlite3_column_blob(self->statement->st, i), nbytes); in _pysqlite_fetch_one_row()
443 if (self->statement != NULL) { in _pysqlite_query_execute()
445 pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
462 if (self->statement) { in _pysqlite_query_execute()
463 (void)pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
466 Py_XSETREF(self->statement, in _pysqlite_query_execute()
470 if (!self->statement) { in _pysqlite_query_execute()
474 if (self->statement->in_use) { in _pysqlite_query_execute()
475 Py_SETREF(self->statement, in _pysqlite_query_execute()
477 if (!self->statement) { in _pysqlite_query_execute()
480 rc = pysqlite_statement_create(self->statement, self->connection, operation); in _pysqlite_query_execute()
482 Py_CLEAR(self->statement); in _pysqlite_query_execute()
487 pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
488 pysqlite_statement_mark_dirty(self->statement); in _pysqlite_query_execute()
492 if (self->connection->begin_statement && self->statement->is_dml) { in _pysqlite_query_execute()
508 pysqlite_statement_mark_dirty(self->statement); in _pysqlite_query_execute()
510 pysqlite_statement_bind_parameters(self->statement, parameters); in _pysqlite_query_execute()
515 rc = pysqlite_step(self->statement->st, self->connection); in _pysqlite_query_execute()
525 (void)pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
537 numcols = sqlite3_column_count(self->statement->st); in _pysqlite_query_execute()
549 …e_SetItem(descriptor, 0, _pysqlite_build_column_name(sqlite3_column_name(self->statement->st, i))); in _pysqlite_query_execute()
560 if (self->statement->is_dml) { in _pysqlite_query_execute()
584 pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
585 Py_CLEAR(self->statement); in _pysqlite_query_execute()
589 pysqlite_statement_reset(self->statement); in _pysqlite_query_execute()
626 sqlite3_stmt* statement; in pysqlite_cursor_executescript() local
662 &statement, in pysqlite_cursor_executescript()
673 rc = pysqlite_step(statement, self->connection); in pysqlite_cursor_executescript()
675 (void)sqlite3_finalize(statement); in pysqlite_cursor_executescript()
681 (void)sqlite3_finalize(statement); in pysqlite_cursor_executescript()
686 rc = sqlite3_finalize(statement); in pysqlite_cursor_executescript()
724 if (self->statement) { in pysqlite_cursor_iternext()
725 (void)pysqlite_statement_reset(self->statement); in pysqlite_cursor_iternext()
726 Py_CLEAR(self->statement); in pysqlite_cursor_iternext()
746 if (self->statement) { in pysqlite_cursor_iternext()
747 rc = pysqlite_step(self->statement->st, self->connection); in pysqlite_cursor_iternext()
749 (void)pysqlite_statement_reset(self->statement); in pysqlite_cursor_iternext()
754 (void)pysqlite_statement_reset(self->statement); in pysqlite_cursor_iternext()
763 (void)pysqlite_statement_reset(self->statement); in pysqlite_cursor_iternext()
873 if (self->statement) { in pysqlite_cursor_close()
874 (void)pysqlite_statement_reset(self->statement); in pysqlite_cursor_close()
875 Py_CLEAR(self->statement); in pysqlite_cursor_close()