-
Hi,
I'm not a prolific contributor, but I found this method to be missing on the transaction struct. I could just use a prepare query yes, but for consistency i think i should be there. I will crea…
-
Currently, the `ulid` crate implements `postgres-types` support but for some unknown reason the `sqlx` crate does not extend from the generic `postgres-types` crate. So anyone using a derivative of `…
-
### Bug Description
Hello,
I am setting up an axum web server with a simple route handler. The handler acquires a connection from the connection pool, and then runs some arbitrary statement. Origi…
-
### Problem
`cargo add` can be a bit annoying when specifying features for multiple crates. For example:
`cargo add serde sqlx --features serde/derive sqlx/postgres` fails with ``error: invalid ch…
-
Running abacus with: `--database sqlite::memory:` will crash after a few minutes:
```
ERROR backend::error: SQLx error: Database(SqliteError { code: 1, message: "no such table: elections" })
```
-
Bit of a short one here:
Are there any plans to add `sqlite` support to `ormlite-cli`? Or potentially wrap `sqlx-cli`?
-
I forgot to set `DATABASE_URL` and I'm getting a bunch of errors:
```
error: set `DATABASE_URL` to use query macros online, or run `cargo sqlx prepare` to update the query cache
```
but this is mi…
-
Box::pin(fut)
| ^^^^^^^^^^^^^ `dyn Future + std::marker::Send` cannot be shared between threads safely
How can I fixed it?
-
### Bug Description
`sqlx::query_file!("src/queries/leaderboard.sql")` this has error:
```sh
unsupported type NULL of column #1 ("user")
```
the leaderboard.sql in question is:
```sql
select
…
-
The integration tests for `event` and `program` in the VEN library rely on a DB created by the sqlx testing framework. This is not ideal, especially if we want to test the integration of our VEN libra…