Skip to main content

diesel/sqlite/
mod.rs

1//! Provides types and functions related to working with SQLite
2//!
3//! Much of this module is re-exported from database agnostic locations.
4//! However, if you are writing code specifically to extend Diesel on
5//! SQLite, you may need to work with this module directly.
6
7mod auto_extension;
8pub(crate) mod backend;
9pub(crate) mod connection;
10pub mod expression;
11mod function_behavior;
12
13pub mod query_builder;
14
15mod types;
16
17pub use self::auto_extension::cancel_auto_extension;
18pub use self::auto_extension::register_auto_extension;
19pub use self::auto_extension::reset_auto_extension;
20pub use self::backend::{Sqlite, SqliteType};
21pub use self::connection::BusyDecision;
22pub use self::connection::CommitDecision;
23pub use self::connection::ProgressDecision;
24pub use self::connection::SerializedDatabase;
25pub use self::connection::SqliteBindValue;
26pub use self::connection::SqliteConnection;
27pub use self::connection::SqliteLimit;
28pub use self::connection::SqliteTraceEvent;
29pub use self::connection::SqliteTraceFlags;
30pub use self::connection::SqliteValue;
31pub use self::connection::authorizer;
32pub use self::connection::sqlite_blob::SqliteReadOnlyBlob;
33pub use self::connection::{AuthorizerContext, AuthorizerDecision};
34pub use self::connection::{CollationNeededContext, SqliteTextRep};
35#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
36pub use self::connection::{
37    OwnedSqliteBindValue, SqliteBindCollector, SqliteBindCollectorData, SqliteBindValueRef,
38};
39pub use self::connection::{
40    SqliteChangeEvent, SqliteChangeOp, SqliteChangeOps, SqliteUpdateRouter,
41};
42#[cfg(feature = "__sqlite-shared")]
43pub use self::function_behavior::SqliteFunctionBehavior;
44pub use self::query_builder::SqliteQueryBuilder;
45
46/// Trait for the implementation of a SQLite aggregate function
47///
48/// This trait is to be used in conjunction with the `define_sql_function!`
49/// macro for defining a custom SQLite aggregate function. See
50/// the documentation [there](super::prelude::define_sql_function!) for details.
51pub trait SqliteAggregateFunction<Args>: Default {
52    /// The result type of the SQLite aggregate function
53    type Output;
54
55    /// The `step()` method is called once for every record of the query.
56    ///
57    /// This is called through a C FFI, as such panics do not propagate to the caller. Panics are
58    /// caught and cause a return with an error value. The implementation must still ensure that
59    /// state remains in a valid state (refer to [`std::panic::UnwindSafe`] for a bit more detail).
60    fn step(&mut self, args: Args);
61
62    /// After the last row has been processed, the `finalize()` method is
63    /// called to compute the result of the aggregate function. If no rows
64    /// were processed `aggregator` will be `None` and `finalize()` can be
65    /// used to specify a default result.
66    ///
67    /// This is called through a C FFI, as such panics do not propagate to the caller. Panics are
68    /// caught and cause a return with an error value.
69    fn finalize(aggregator: Option<Self>) -> Self::Output;
70}
71
72/// SQLite specific sql types
73pub mod sql_types {
74    #[doc(inline)]
75    pub use super::types::Timestamptz;
76
77    #[cfg(feature = "__sqlite-shared")]
78    #[doc(inline)]
79    pub use super::types::JsonValidFlags;
80}
81
82#[cfg(feature = "__sqlite-shared")]
83pub use self::types::JsonValidFlag;