rust-oracle
rust-oracle copied to clipboard
Oracle driver for Rust
How to call Oracle stored procedures returning sys_refcursor as out parameter from oracle0.5.7?
Hi Kubo, I try to use values, which I get from a query, as binds for next query/statment. As the subjected trait bound is not in place I alway need...
I've tried the following code: ```rust use oracle::*; // oracle = "0.5.6" const CREATE_TEST_TABLE: &str = "CREATE TABLE test_table (\ text clob )"; fn repro(conn: Connection) { let _ =...
Why should we implement send for ResultSet ``` where T: RowValue, ```
I tried to run a simple 'SELECT' on a few fields from Oracle's instantclient with 'set timing on' and got a duration of 00:00:00.01. I then tried the same query...
Hey there, thanks for the great crate! --- The `Timestamp::fmt` trait does not pad the year to four digits, resulting in dates such as year 2 being formatted as `2-01-01...
My rust program has a oracle-read thread and a consume thread. 1)oracle-read thread use [ResultSet.next] to get Row and send a Arc to tokio::sync::mpcs::unbounded queue. 2)consume thread receive Arc and...
Here is oracle `nls_database_parameters` table data ``` +-------------------------+------------------------------+ | PARAMETER | VALUE | +-------------------------+------------------------------+ | NLS_LANGUAGE | AMERICAN | | NLS_TERRITORY | AMERICA | | NLS_CURRENCY | $ | |...
https://rustsec.org/advisories/RUSTSEC-2024-0436 was issued today: [`paste`](https://github.com/dtolnay/paste), [a dependency of `rust-oracle`](https://github.com/kubo/rust-oracle/blob/21fef443406e704aabfce3f089614b31b4a4af98/Cargo.toml#L24), is no longer maintained; its repository was archived. Some possible alternatives are listed in https://github.com/rustsec/advisory-db/issues/2203#issuecomment-2600768154.