arcstur / axum-sqlx-tx

Request-scoped sqlx transactions for axum

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

axum-sqlx-tx

Request-bound SQLx transactions for axum.

Summary

axum-sqlx-tx provides an axum extractor for obtaining a request-bound transaction. The transaction begins the first time the extractor is used, and is stored with the request for use by other middleware/handlers. The transaction is resolved depending on the status code of the response – successful (2XX) responses will commit the transaction, otherwise it will be rolled back.

See the crate documentation for more information and examples.

About

Request-scoped sqlx transactions for axum

License:MIT License


Languages

Language:Rust 100.0%