sibyl 0.7.1

An OCI-based (synchronous or asynchronous) interface between Rust applications and Oracle databases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# VARCHAR

```rust,noplayground
# fn main() -> sibyl::Result<()> {
use sibyl::Varchar;

let env = sibyl::env()?;

let txt = Varchar::from("Hello, World!", &env)?;

assert_eq!(txt.as_str(), "Hello, World!");
# }
```