DatabaseConnection

Struct DatabaseConnection 

Source
#[non_exhaustive]
pub struct DatabaseConnection { pub inner: DatabaseConnectionType, /* private fields */ }
Expand description

Handle a database connection depending on the backend enabled by the feature flags. This creates a connection pool internally (for SQLx connections), and so is cheap to clone.

Fields (Non-exhaustive)ยง

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
ยงinner: DatabaseConnectionType

DatabaseConnection used to be a enum. Now itโ€™s moved into inner, because we have to attach other contexts.

Implementationsยง

Sourceยง

impl DatabaseConnection

Source

pub fn as_mock_connection(&self) -> &MockDatabaseConnection

Available on crate feature mock only.

Generate a database connection for testing the Mock database

ยงPanics

Panics if DbConn is not a mock connection.

Source

pub fn into_transaction_log(self) -> Vec<Transaction>

Available on crate feature mock only.

Get the transaction log as a collection Vec<crate::Transaction>

ยงPanics

Panics if the mocker mutex is being held by another thread.

Sourceยง

impl DatabaseConnection

Source

pub fn as_proxy_connection(&self) -> &ProxyDatabaseConnection

Available on crate feature proxy only.

Generate a database connection for testing the Proxy database

ยงPanics

Panics if DbConn is not a proxy connection.

Sourceยง

impl DatabaseConnection

Source

pub fn load_rbac(&self) -> Result<(), DbErr>

Available on crate feature rbac only.

Load RBAC data from the same database as this connection and setup RBAC engine. If the RBAC engine already exists, it will be replaced.

Source

pub fn load_rbac_from(&self, db: &DbConn) -> Result<(), DbErr>

Available on crate feature rbac only.

Load RBAC data from the given database connection and setup RBAC engine. This could be from another database.

Source

pub fn replace_rbac(&self, engine: RbacEngine)

Available on crate feature rbac only.

Replace the internal RBAC engine.

Source

pub fn restricted_for( &self, user_id: RbacUserId, ) -> Result<RestrictedConnection, DbErr>

Available on crate feature rbac only.

Create a restricted connection with access control specific for the user.

Sourceยง

impl DatabaseConnection

Source

pub fn get_database_backend(&self) -> DbBackend

Get the database backend for this connection

ยงPanics

Panics if DatabaseConnection is Disconnected.

Source

pub fn get_schema_builder(&self) -> SchemaBuilder

Creates a SchemaBuilder for this backend

Source

pub fn set_metric_callback<F>(&mut self, _callback: F)
where F: Fn(&Info<'_>) + 'static,

Sets a callback to metric this connection

Source

pub fn ping(&self) -> Result<(), DbErr>

Checks if a connection to the database is still valid.

Source

pub fn close(self) -> Result<(), DbErr>

Explicitly close the database connection. See Self::close_by_ref for usage with references.

Source

pub fn close_by_ref(&self) -> Result<(), DbErr>

Explicitly close the database connection

Trait Implementationsยง

Sourceยง

impl Clone for DatabaseConnection

Sourceยง

fn clone(&self) -> DatabaseConnection

Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Sourceยง

impl ConnectionTrait for DatabaseConnection

Sourceยง

fn get_database_backend(&self) -> DbBackend

Get the database backend for the connection. This depends on feature flags enabled.
Sourceยง

fn execute_raw(&self, stmt: Statement) -> Result<ExecResult, DbErr>

Execute a Statement
Sourceยง

fn execute_unprepared(&self, sql: &str) -> Result<ExecResult, DbErr>

Execute a unprepared Statement
Sourceยง

fn query_one_raw(&self, stmt: Statement) -> Result<Option<QueryResult>, DbErr>

Execute a Statement and return a single row of QueryResult
Sourceยง

fn query_all_raw(&self, stmt: Statement) -> Result<Vec<QueryResult>, DbErr>

Execute a Statement and return a vector of QueryResult
Sourceยง

fn is_mock_connection(&self) -> bool

Check if the connection is a test connection for the Mock database
Sourceยง

fn execute<S: StatementBuilder>(&self, stmt: &S) -> Result<ExecResult, DbErr>

Execute a [QueryStatement]
Sourceยง

fn query_one<S: StatementBuilder>( &self, stmt: &S, ) -> Result<Option<QueryResult>, DbErr>

Execute a [QueryStatement] and return a single row of QueryResult
Sourceยง

fn query_all<S: StatementBuilder>( &self, stmt: &S, ) -> Result<Vec<QueryResult>, DbErr>

Execute a [QueryStatement] and return a vector of QueryResult
Sourceยง

fn support_returning(&self) -> bool

Check if the connection supports RETURNING syntax on insert and update
Sourceยง

impl Debug for DatabaseConnection

Sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Sourceยง

impl Default for DatabaseConnection

Sourceยง

fn default() -> Self

Returns the โ€œdefault valueโ€ for a type. Read more
Sourceยง

impl From<DatabaseConnectionType> for DatabaseConnection

Sourceยง

fn from(inner: DatabaseConnectionType) -> Self

Converts to this type from the input type.
Sourceยง

impl StreamTrait for DatabaseConnection

Sourceยง

type Stream<'a> = QueryStream

Create a stream for the QueryResult
Sourceยง

fn get_database_backend(&self) -> DbBackend

Get the database backend for the connection. This depends on feature flags enabled.
Sourceยง

fn stream_raw<'a>(&'a self, stmt: Statement) -> Result<Self::Stream<'a>, DbErr>

Execute a Statement and return a stream of results
Sourceยง

fn stream<'a, S: StatementBuilder>( &'a self, stmt: &S, ) -> Result<Self::Stream<'a>, DbErr>

Execute a [QueryStatement] and return a stream of results
Sourceยง

impl TransactionTrait for DatabaseConnection

Sourceยง

fn transaction<F, T, E>(&self, _callback: F) -> Result<T, TransactionError<E>>
where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Result<T, E>, E: Display + Debug,

Execute the function inside a transaction. If the function returns an error, the transaction will be rolled back. If it does not return an error, the transaction will be committed.

Sourceยง

fn transaction_with_config<F, T, E>( &self, _callback: F, _isolation_level: Option<IsolationLevel>, _access_mode: Option<AccessMode>, ) -> Result<T, TransactionError<E>>
where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Result<T, E>, E: Display + Debug,

Execute the function inside a transaction. If the function returns an error, the transaction will be rolled back. If it does not return an error, the transaction will be committed.

Sourceยง

type Transaction = DatabaseTransaction

The concrete type for the transaction
Sourceยง

fn begin(&self) -> Result<DatabaseTransaction, DbErr>

Execute SQL BEGIN transaction. Returns a Transaction that can be committed or rolled back
Sourceยง

fn begin_with_config( &self, _isolation_level: Option<IsolationLevel>, _access_mode: Option<AccessMode>, ) -> Result<DatabaseTransaction, DbErr>

Execute SQL BEGIN transaction with isolation level and/or access mode. Returns a Transaction that can be committed or rolled back

Auto Trait Implementationsยง

Blanket Implementationsยง

Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Sourceยง

impl<T> CloneToUninit for T
where T: Clone,

Sourceยง

unsafe fn clone_to_uninit(&self, dest: *mut u8)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T> Instrument for T

Sourceยง

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Sourceยง

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T> IntoEither for T

Sourceยง

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

impl<T> ToOwned for T
where T: Clone,

Sourceยง

type Owned = T

The resulting type after obtaining ownership.
Sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Sourceยง

impl<T> WithSubscriber for T

Sourceยง

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Sourceยง

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more