https://github.com/rbatis/rbdc-pool-deadpool
rbdc-pool-deadpool
https://github.com/rbatis/rbdc-pool-deadpool
Last synced: 4 months ago
JSON representation
rbdc-pool-deadpool
- Host: GitHub
- URL: https://github.com/rbatis/rbdc-pool-deadpool
- Owner: rbatis
- License: apache-2.0
- Created: 2023-12-29T11:13:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-04T08:46:56.000Z (12 months ago)
- Last Synced: 2025-01-09T08:26:59.227Z (6 months ago)
- Language: Rust
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- 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_deadpool::DeadPool;
use rbdc_sqlite::{SqliteConnectOptions, SqliteDriver};
let rb=RBatis::new();let opts=SqliteConnectOptions::new();
let _ = rb.init_option::(SqliteDriver{},opts);
```