Formatting fixes
This commit is contained in:
parent
fa4ab61e3b
commit
e123f5b96b
@ -5,21 +5,21 @@
|
|||||||
//! Contains database-specific query data
|
//! Contains database-specific query data
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
use slite::{params, Connection, Result};
|
|
||||||
use slite::NO_PARAMS;
|
use slite::NO_PARAMS;
|
||||||
|
use slite::{params, Connection, Result};
|
||||||
use std::cell::RefCell;
|
use std::cell::RefCell;
|
||||||
|
|
||||||
/// The struct implementing the `DatabaseDriver` trait
|
/// The struct implementing the `DatabaseDriver` trait
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct SQLiteDriver {
|
pub struct SQLiteDriver {
|
||||||
connection: RefCell<Option<Connection>>
|
connection: RefCell<Option<Connection>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl SQLiteDriver {
|
impl SQLiteDriver {
|
||||||
/// Create an SQLiteDriver driver
|
/// Create an SQLiteDriver driver
|
||||||
pub fn new(dsn: &str) -> Self {
|
pub fn new(dsn: &str) -> Self {
|
||||||
let mut driver = SQLiteDriver {
|
let mut driver = SQLiteDriver {
|
||||||
connection: RefCell::new(None)
|
connection: RefCell::new(None),
|
||||||
};
|
};
|
||||||
|
|
||||||
driver.connect(dsn);
|
driver.connect(dsn);
|
||||||
|
@ -917,12 +917,7 @@ impl QueryState {
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
fn append_query_map(
|
fn append_query_map(&mut self, clause_type: QueryClauseType, conj: &str, s: &str) -> &mut Self {
|
||||||
&mut self,
|
|
||||||
clause_type: QueryClauseType,
|
|
||||||
conj: &str,
|
|
||||||
s: &str,
|
|
||||||
) -> &mut Self {
|
|
||||||
let conj = if self.query_map.len() == 0 {
|
let conj = if self.query_map.len() == 0 {
|
||||||
" WHERE "
|
" WHERE "
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user