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
# RAW

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

let env = sibyl::env()?;

let raw = Raw::from_bytes(&[1u8,2,3,4,5], &env)?;

assert_eq!(raw.as_bytes(), &[1u8,2,3,4,5]);
# }
```