rbdc-sqlite
SQLite database driver for the rbdc database abstraction layer.
Basic Driver Usage
Full example: example/src/sqlite.rs
use Error;
use Connection;
use Pool;
use FastPool;
use SqliteDriver;
async
Usage with rbatis ORM
use RBatis;
use Error;
pub async
Supported Connection String Formats
1. In-memory database
sqlite://:memory:
2. File-based database
sqlite://path/to/database.db
License
This project is licensed under the same license as rbdc.