rust-oracle
rust-oracle copied to clipboard
Oracle driver for Rust
Hi, Environment: - Oracle Linux 8.4 - Instance Client 18.5 - rust-oracle 0.5.1 When setting privileges, CTRL-C doesn't work anymore. Reproducible example: ```rust use oracle::{Connector, Privilege}; use std::thread; use std::time::Duration;...
Would be nice to have support for at least one of these: LONG, LONG RAW and BLOB data type, nowadays is very common to store binary data in the DB...
The current design of `oracle::Statement` makes it hard to impossible to implement a efficient prepared statement mechanism on top of the `oracle` crate. A common strategy to implement prepared statement...
Hi! I want to share what I found out with today's debugging. I am preparing a simple rust program with http server. In the beginning I am creating an "global"...
The connection ping fn seems to never return when no connection to db is present. The sample code below hangs during the match for conn.ping() and never returns Ok nor...
do you have a roadmap to releasing a v1.0.0? it would be cool if you could create the tickets for what you think is missing for v1.0.0 and assign them...
Hi, It we would be great to be able to check if the context initialized successfully (I had issues with LD_LIBRARY_PATH). The problem arise at `Connector::connect().unwrap()` Is it possible to...
VARRAY
Hi, How can I query varray type data to a struct and then convert it to vector of string? Thanks!
Update `FromSql` implementation of `Date`, `Date`, `DateTime`, and `DateTime` types to map the incoming timezone information, when available. To explicitly ignore the timezone information use of the `NaiveDate` / `NaiveDateTime`...
Im very new to rust, so my question/sample code might be weird. Im trying to build a small rest api with actix, where I stream large result sets back to...