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 No related issues. ### Description SQLx advertises not using any unsafe code, except for SQLite. This is great, however where unsafe code...

enhancement

**Is your feature request related to a problem? Please describe.** In my queries, I frequently use temporary tables because they are highly performant. However, I miss the type checking provided...

enhancement

### I have found these related issues/pull requests Related to #3928 and the original addition in #3917 ### Description I'm trying out the SQLite extension support using the `0.9.0-alpha.1` versions...

enhancement

[bit-vec](https://github.com/contain-rs/bit-vec) bit-vec v0.8 has been out for over a year. I have run test as per [[tests/README.md]]. Some tests failed to compile (`cargo test --no-default-features --manifest-path sqlx-core/Cargo.toml --features json,offline,migrate,_rt-async-std,_tls-rustls`) because...

### I have found these related issues/pull requests I have searched by clicking HERE for existing issues, these are the ones I've found, and this is why I think this...

bug

### I have found these related issues/pull requests #3651 ### Description Hello, The new `PgBindIter` is awesome, but it seems that it allocates too much memory. I would like to...

enhancement

### I have found these related issues/pull requests None ### Description Given the following datetime with nano second precision: `2025-01-01T18:06:41.502163654Z` If writing a query within postgres with it, it gets...

bug

This fixes the test case in . I realize that this may not be the best fix for the issue, so consider this a conversation starter PR. The comments in...

### I have found these related issues/pull requests related to https://github.com/launchbadge/sqlx/issues/1923 ### Description Expected behavior: infer that primary keys can't be optional ### Reproduction steps using sqite driver given a...

bug

### Does your PR solve an issue? closes #4056 ### Is this a breaking change? No, New runtime would run separately, conditional compilation ensures that. ### Limitations This PR adds...