sqlx
sqlx copied to clipboard
🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.
Hello, I have a question here. When the field in mssql is varchar and the size is 200, when using the mssqlrow.get method to a String, the following error occurs:...
### Bug Description `PgConnectionOptions` tries to get the password from the pgpass file when the struct is created, but the caller can then use the builder API to change options...
**This is a breaking change.** Unlike with CPU synchronization primitives, there is no semantic requirement that the guard borrows the lock object. We preserve the optimization of memoizing the release...
Logging of slow connection acquires was added with https://github.com/launchbadge/sqlx/pull/3073 and included tracing fields. One of those fields has an incorrect spelling of `acquire` in its name; this PR corrects the...
I'm very new to both rust and sqlx, so I might be wrong here, but it seems like sqlx tries to convert mysql mediumint columns to rust u8s: ```rust struct...
To be merged with MSRV >= 1.80
I'm diagnosing memory usage in an application, I think these would be useful to have.
### Is this a breaking change? This is a breaking change, it makes arguments no longer forced to be references. Users will have to manually reference their arguments. ### Reasoning...
### I have found these related issues/pull requests I have not found any, I just found a suggestion to support another time library. ### Description The following compiler error is...
Partial fix for postgres of https://github.com/launchbadge/sqlx/issues/294 I've been using this implementation in several different projects and thought that I would see if it can be accepted upstream. I don't care...