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 a query that in my master branch works fine, but when I try to modify the query to add some additional clauses, the `sqlx prepare` command fails with:...

Fixes #1983. - [x] No longer complains about `ROW_NUMBER` type being null - [ ] Supports all window functions that returns integer Feel free to merge if repo maintainer thinks...

Revival of https://github.com/launchbadge/sqlx/pull/1166 Fixes #1162 Tests are separated whether client SSL or password is used to authenticate the user. Database's configuration is changing (to configure database and not provide any...

I'm planning on splitting my project [deque-loader](https://github.com/Bajix/deque-loader-rs) into an ecosystem that includes Diesel, SQLX, Redis, and later Withers, Scylla and Skytable once those are more matured. To do this, I...

Got tired of debating the design of #1900 and wanted to try writing the API from scratch myself. Based on #1901 TODO: tests cc @domodwyer @ThomWright

Hello! I've been using `sqlx` to talk to CockroachDB databases and recently started an upgrade from `sqlx-0.3.5` to `sqlx-0.4.2`. After upgrading, many tests began to fail with ``` PgDatabaseError {...

bug
db:postgres
db:other
bug:db

I've stolen the code from #1827, implemented the suggestions and rebased it on top of the current `main` branch. Missing some unit tests for the Any-related code.

As #1979. The problem is that `explain()` does not handle `ROW_NUMBER()` right. I made a temporary patch for my particular use, but I can see that there might be other...

I don't have a complete reproduction at the moment although I could work on it. The basic issue is that we're using a custom PostgreSQL enum, i.e. `CREATE TYPE MyEnum...

Combining custom record types with unnest results in wrong type looked up by sqlx ================================================================================= To gain more type safety, we would like to create our own record types in...