Julius de Bruijn
Julius de Bruijn
Again coming back to this, but I've been thinking about a new crate `tiberius-with-batteries-included`, that would take Tokio and just make the full package out using tiberius as the core...
Hey. I am not working for Prisma anymore. Somebody from the company could maybe chime in to see if this could be done. Ping @Weakky
So you want to support out variables, that mutate the variables in Rust? No, we don't have any fancy apis for that. Could you maybe link to an implementation in...
Unfortunately I'm also not the owner of this crate anymore either.
Yep. We accept everything that is `AsyncRead + AsyncWrite`, including things such as the [NamedPipeClient](https://docs.rs/tokio/1.17.0/tokio/net/windows/named_pipe/struct.NamedPipeClient.html). This means having a specific API for asking the questions from whatever implements these traits...
If you'd like to try up with a PR to see what kind of API would work for you, I'd give it a review and merge to main if it...
Probably server TLS and rustls don't co-operate very well. Did you try with native-tls and OpenSSL?
We don't yet have `FromRow` trait, only [FromSql](https://docs.rs/tiberius/0.5.8/tiberius/trait.FromSql.html) that's per-column. I wouldn't say no to a PR to implement that though, that would be quite useful for many users and...
See also how ScyllaDB handles the de-serialization. Not saying which idea is the best, but it's interesting to see people taking different approaches to this problem: https://github.com/scylladb/scylla-rust-driver/blob/main/examples/select-paging.rs#L36
Also, what I'd like to see is that if we take the proc macro route, that we could instead of copying, move the data from the row to the struct....