We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#[must_use]
in sqlx-core/src/cursor.rs, the trait Cursor (which should cover implementations): "cursor must have .next() called to execute query"
sqlx-core/src/cursor.rs
Cursor
.next()
in sqlx-core/src/query.rs, Query and Map: "query must be executed to affect database"
sqlx-core/src/query.rs
Query
Map
in sqlx-core/src/query_as.rs: QueryAs: "query must be executed to affect database"
sqlx-core/src/query_as.rs
QueryAs
in sqlx-core/src/transaction.rs: Transaction: "transaction rolls back if not explicitly .commit()ed"
sqlx-core/src/transaction.rs
Transaction
.commit()
@mehcode
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
in
sqlx-core/src/cursor.rs
, the traitCursor
(which should cover implementations): "cursor must have.next()
called to execute query"in
sqlx-core/src/query.rs
,Query
andMap
: "query must be executed to affect database"in
sqlx-core/src/query_as.rs
:QueryAs
: "query must be executed to affect database"in
sqlx-core/src/transaction.rs
:Transaction
: "transaction rolls back if not explicitly.commit()
ed"@mehcode
The text was updated successfully, but these errors were encountered: