rust-oracle icon indicating copy to clipboard operation
rust-oracle copied to clipboard

Oracle driver for Rust

Results 31 rust-oracle issues
Sort by recently updated
recently updated
newest added

Hi, as the title says. During profiling of retrieving large sets of data from Oracle databases, I noticed that `::get()` prominently stands out if there are lots of small rows....

i'd strongly suggest to move to using [Semantic Versioning](https://semver.org/spec/v2.0.0.html) for this repository to make it easier for consumers to use it. e.g. somewhere between 0.5.1 and 0.5.5 (presumably with 0.5.5...

it seems that currently optional features (`chrono` & `aq_unstable` at this time) are not being tested by the CI workflow. i'd suggest adding a [build matrix](https://docs.github.com/en/actions/using-workflows/about-workflows#using-a-matrix) which covers also these...

with this consumers get a guarantee for which rustc versions will work. previously (up to at least version 0.5.1) it was possible to build this library with rustc 1.42.0, now...

Hey, sometimes requests to my db take quite a long time, I'd like to be able to drop the connection and cancel all the requests that are going on somehow...

When I try to run `select round(v, 2) from test_round;`, I want to get **Float** number result, but the return type is Number(0,0). Number(0,0) will be parsed as **Integer** because...

I am looking to hook up the my rust app to oracle database and we use AQ for communication. I can see in the bindings that there are functions for...

Enable to check errors and warnings even if the connection created successfully or the statement ran successfully. It is more or less similar as it can be done using JDBC...

So we can access the rows of the result set of call like conn.query_named in an async function. Then call this async function with tokio spawn. Thanks.

First off, I don't think this is the fault of rust-oracle. It seems to be either OCI or the way ODPI-C uses OCI but I'd appreciate your opinion. I have...