Andy Grove
Andy Grove
This fixes the following compilation issue when using Rust 1.43.1. ``` error: use of deprecated item 'std::error::Error::description': use the Display impl or to_string() --> src/error.rs:75:75 | 75 | ref error...
The initial PoC of RDBC was pretty naive and copied from ODBC/JDBC and is not idiomatic Rust code. This issue has been created to discuss how to create an idiomatic...
Use https://docs.rs/tiberius/0.3.2/tiberius/
Some databases support queries that return multiple result sets. This could be modeled roughly like this pseudo code? ```rust trait Statement { fn execute_query() -> impl Stream; } trait ResultSet...
We need the ability to retrieve DATE, TIME, TIME_WITH_TIMEZONE, TIMESTAMP, and TIMESTAMP_WITH_TIMEZONE data types from query result sets, as defined by ANSI SQL [1]. We should probably use the chrono...
See the proposal in blog post [1] and some feedback in an HN thread [2]. [1] https://andygrove.io/2020/01/rust-database-connectivity-rdbc/ [2] https://news.ycombinator.com/item?id=22027134
I suggest we have explicit being/commit/rollback functions as well as the ability to set autocommit mode when creating connections.
Currently, it is necessary to statically link to all possible RDBC driver implementations that need to be used at runtime but one of the main benefits of ODBC/JDBC is that...