https://github.com/rbatis/rbdc-pool-mobc
rbdc-pool-mobc
https://github.com/rbatis/rbdc-pool-mobc
Last synced: 10 months ago
JSON representation
rbdc-pool-mobc
- Host: GitHub
- URL: https://github.com/rbatis/rbdc-pool-mobc
- Owner: rbatis
- License: apache-2.0
- Created: 2023-12-29T11:14:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-29T11:17:08.000Z (almost 2 years ago)
- Last Synced: 2025-01-09T08:27:03.068Z (11 months ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
init pool by DBPoolOptions and Pool
* for example:
```
use rbatis::RBatis;
use rbdc_pool_mobc::MobcPool;
use rbdc_sqlite::{SqliteConnectOptions, SqliteDriver};
let rb=RBatis::new();
let opts=SqliteConnectOptions::new();
let _ = rb.init_option::(SqliteDriver{},opts);
```