Kubo Takehiro

Results 127 comments of Kubo Takehiro

Thanks. It is good opportunity for me to think about minimum supported rust version again. > i'd strongly suggest to move to using [Semantic Versioning](https://semver.org/spec/v2.0.0.html) for this repository to make...

I added "[Supported Rust Versions](https://github.com/kubo/rust-oracle/tree/v0.5.6#supported-rust-versions)" to `README.md`.

How about [`Connection::set_call_timeout`] or [`Connection::break_execution`]? [`Connection::set_call_timeout`]: https://www.jiubao.org/rust-oracle/oracle/struct.Connection.html#method.set_call_timeout [`Connection::break_execution`]: https://www.jiubao.org/rust-oracle/oracle/struct.Connection.html#method.break_execution

It is a documentation bug. I should emphasize that when the precision is zero, the scale is ignored and type is `NUMBER` without precision and scale. Look at the following....

It has not been supported yet. I tried it about three years ago and reported https://github.com/oracle/odpi/issues/104. I have not restarted it yet.

I added experimental advanced queuing support. See https://www.jiubao.org/rust-oracle/oracle/aq/index.html. It is available when `aq_unstable` feature is enabled. It is unstable for the time being. Add the following dependency in `Cargo.toml`: ```toml...

This is same issue with https://github.com/oracle/node-oracledb/issues/128 and https://stackoverflow.com/questions/41811197/php-oci-connection-ignores-sigint-ctrl-c. It doesn't depend on whether privilege is set or not. It depends on whether the connection is established successfully or not. I...

> So if I understand correctly, the issue lies in the instant client lib? or ODPI? In the client library. ODPI and rust-oracle don't change signal handlers.

Thanks for the information. I didn't know that. I'll add a document about it. However I'll guide [this link](https://www.ibm.com/support/pages/unfenced-oracle-wrapper-got-unexpected-errors-when-using-oracle-11gr2-client) instead of the solution. That's because "My Oracle Support TERMS OF...

Inserting and querying LOB data types as `String` or `Vec` are supported. They are tested [here](https://github.com/kubo/rust-oracle/blob/v0.5.1/tests/statement.rs#L361-L389). If you need to read and write a portion of LOB, it has not...