blob: d40f4ceaa5cb524a956e7ce3251edcd48b4338a2 [file] [log] [blame]
//! Provides types and functions related to working with SQLite
//!
//! Much of this module is re-exported from database agnostic locations.
//! However, if you are writing code specifically to extend Diesel on
//! SQLite, you may need to work with this module directly.
mod backend;
mod connection;
mod types;
pub mod query_builder;
pub use self::backend::{Sqlite, SqliteType};
pub use self::connection::SqliteConnection;
pub use self::query_builder::SqliteQueryBuilder;
/// Trait for the implementation of a SQLite aggregate function
///
/// This trait is to be used in conjunction with the `sql_function!`
/// macro for defining a custom SQLite aggregate function. See
/// the documentation [there](../../diesel_derives/macro.sql_function_proc.html) for details.
pub trait SqliteAggregateFunction<Args>: Default {
/// The result type of the SQLite aggregate function
type Output;
/// The `step()` method is called once for every record of the query
fn step(&mut self, args: Args);
/// After the last row has been processed, the `finalize()` method is
/// called to compute the result of the aggregate function
fn finalize(self) -> Self::Output;
}