buru 0.6.8

A Rust application with both CLI and Web interface for data/image processing
Documentation
1
2
3
4
5
6
7
8
9
10
use super::Dialect;

/// SQLite dialect implementation of the `Dialect` trait.
pub struct SqliteDialect;

impl Dialect for SqliteDialect {
    fn placeholder(_idx: usize) -> String {
        "?".to_string()
    }
}