stringqb/src/drivers/sqlite.rs

18 lines
318 B
Rust

//! Database Driver for SQLite
//!
//! Contains database-specific query data
use super::*;
/// The struct implementing the `DatabaseDriver` trait
#[derive(Debug)]
pub struct SQLite;
impl SQLite {
/// Create an SQLite driver
pub fn new() -> Self {
SQLite {}
}
}
impl DatabaseDriver for SQLite {}