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

Bit of a word soup of a title, sorry :grimacing: I'm trying to deserialize a row into a struct that holds a `Vec`, where `Item` is an enum that derives...

blocked

Compiling a non-trivial `INSERT` query that contains a `RETURNING` clause results in long compile times, with very high memory consumption. I've created an example repository which demonstrates the issue: [jaehl/sqlx-bug](https://github.com/jaehl/sqlx-bug)...

bug
db:sqlite
macros

Hi there! I'm wondering if it is possible to configure the schema that the `_sqlx_migrations` table is written to when invoking CLI commands. It seems to be defaulting to our...

It appears using down migrations and then running `sqlx migrate info` results in various unhappy logs that complain a checksum with a matching version is installed, but with the wrong...

### About I'm new to rust, but I'm trying to create a simple async "driver" to use in python, so I'll connect via rust to access SQL Server and do...

Snowflake is getting huge - hit market cap ~$90B and getting popular fast. Might be the best time for rust to become well-known for supporting it as a DB option....

I have a [somewhat-hackish setup](https://github.com/TimDeve/slice-n-dice/blob/85db589654597ff4a593e4b96b1b2cc5bf7430ec/server/tests/with_db/integration_scaffold.rs) to create a test database for every integration tests, on struct creation it creates the database with a connection pool and on drop it closes...

I've got some columns which are never 0, so it would be useful to implement `FromRow` for `Option`, where a zero value returns `None`. This allows for niche optimizations and...

This adds `begin_with` methods for creating transactions with additional options. The exact options object varies depending upon the backend. For MS-SQL and AnyDatabase the options are currently just `()` although...

I know this is an duplicate of #914, but it seems that you guys are not aware that having to build `rustls` can be such a headache, in the meantime,...