Georg Semmler
Georg Semmler
> I suppose this line of code forces to use only binary format: > diesel/src/pg/connection/stmt/mod.rs#L74 That's the place that actually defines the representation for the passed bind parameters. The representation...
As a workaround you need to define your own `BoxedQuery` type alias with the right sql type. This change "fixes" the minimal example: ```diff diff --git a/src/main.rs b/src/main.rs index ff7d64d..19129e6...
Another update here: The [`BoxedQuery`](https://docs.diesel.rs/1.4.x/diesel/macro.table.html#boxedquery) type generated by the `table!` macro has a `ST` parameter that is set by default to the corresponding SQL type of all columns. We probably...
In theory this it should be possible to build binaries for all major operation systems. As this should be as easy as possible for us maintains I would like to...
It is certainly possible to link all DB client libraries statically. For sqlite this can be done via the [`sqlite-bundled`](https://github.com/diesel-rs/diesel/blob/master/diesel_cli/Cargo.toml#L52) feature. For libpq and libmysqclient some configuration of the corresponding...
> Probably the only part giving away Diesel CLI's power as not a migration toolkit is that it requires Cargo.toml to operate. With https://github.com/diesel-rs/diesel/pull/2069 it does not require a `Cargo.toml`...
@GopherJ I do not see what this adds to the discussion, that's already written in my comment above. If you've nothing to say, please stop adding comments here.
@GopherJ It's not about stopping someone from speaking, it's just about increasing the signal to noise ratio for potential contributors. I'm happy to hear out comments that add something to...
I would rather not like to have a direct dependency on `openssl-sys`. That's an internal libpq dependency, so I think that should be handled there. Additionally it seems that `libpq`...
@nanoqsh I think you are mixing up a few things here. Let me try to clarify those points. First of all to use diesels postgres backend you don't need a...