pub use Arguments;
pub use ;
pub use SqliteError;
pub use Prepared;
pub use SqliteDataType;
pub use Value;
/// Argument parsing and binding.
/// SQLite connection handling.
/// SQLite error types and helpers.
/// Raw FFI bindings.
/// Prepared statement types and helpers.
/// SQLite type information utilities.
/// SQLite value container and accessors.
/// Default number of times [`unlock_notify::wait`] is allowed to retry when a
/// statement is reset due to `SQLITE_LOCKED`.
///
/// [`ConnectionHandle::exec`] and [`StatementHandle::step`] use this constant to
/// limit how many unlock notification attempts will be made before returning
/// [`Error::UnlockNotify`].
pub const DEFAULT_MAX_RETRIES: usize = 5;