rbdc-pg 0.1.13

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
RBDC

* an database driver abstract

* support zero copy serde-ser/de

Database -> bytes ->rbs::Value-> Struct(User Define)
Struct(User Define) -> rbs::ValueRef -> ref clone() -> Database


### how to define my driver?
should impl trait and load driver
* impl trait Driver
* impl trait Connection
* impl trait Statement
* impl trait ResultSet
* impl trait MetaData
* impl trait ConnectOptions