sqlx icon indicating copy to clipboard operation
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.

Results 570 sqlx issues
Sort by recently updated
recently updated
newest added

### I have found these related issues/pull requests latest WIP at : https://github.com/Aditya1404Sal/sqlx/tree/latest/wasip3 Wasip3 : https://crates.io/crates/wasip3 Early POC : https://github.com/rvolosatovs/sqlx/tree/feat/wasip3 ### Description since Webassembly is almost close to releasing wasi-p3,...

enhancement

### Description It would be really awesome to be able to use this library with GoogleSQL databases. ### Prefered solution Just like this library allows compile-time query checking of postgres...

enhancement

### I have found these related issues/pull requests - ### Description The current [`PgConfig`](https://docs.rs/sqlx/latest/sqlx/postgres/struct.PgConnectOptions.html) definition seems to mirror quite closely, for TLS, the corresponding options in `libpq`: `sslmode`, `sslrootcert`, `sslcert`,...

enhancement

**Is your feature request related to a problem? Please describe.** If we have a struct with many fields which we want to insert to the database, we need to write...

enhancement

### I have found these related issues/pull requests None ### Description ``` let rows = sqlx::query_as!( DBImportTorrent, r#" SELECT id, upload_factor, download_factor, seeders, leechers, times_completed, CASE WHEN deleted_at IS NOT...

bug

### Does your PR solve an issue? No. ### Is this a breaking change? No. Behavior changes _can_ be breaking if significant enough. Consider [Hyrum's Law](https://www.hyrumslaw.com/): > With a sufficient...

### I have found these related issues/pull requests https://github.com/launchbadge/sqlx/pull/3311 https://docs.rs/sqlx/latest/sqlx/struct.Transaction.html ### Description The second select in the code sample below returns the following error, even though that's how you're supposed...

bug

### Bug Description Not really sure what exactly the bug is but i am seeing strange behavior that makes it look like sql statements are not executed in the correct...

bug

SQLx MySQL connection pool experiences complete deadlock when multiple tokio::spawn tasks attempt to acquire connections simultaneously. The first task succeeds, but all subsequent tasks hang indefinitely at pool.acquire().await, causing 100%+...

bug

### I have found these related issues/pull requests - ### Description When using SQLx with an SQLite DATABASE_URL, the proc-macro process will create -shm and -wal files next to the...

enhancement