sea_orm

Enum DatabaseConnection

Source
pub enum DatabaseConnection {
    SqlxMySqlPoolConnection(SqlxMySqlPoolConnection),
    SqlxPostgresPoolConnection(SqlxPostgresPoolConnection),
    SqlxSqlitePoolConnection(SqlxSqlitePoolConnection),
    MockDatabaseConnection(Arc<MockDatabaseConnection>),
    ProxyDatabaseConnection(Arc<ProxyDatabaseConnection>),
    Disconnected,
}
Expand description

Handle a database connection depending on the backend enabled by the feature flags. This creates a database pool. This will be Clone unless the feature flag mock is enabled.

Variantsยง

ยง

SqlxMySqlPoolConnection(SqlxMySqlPoolConnection)

Create a MYSQL database connection and pool

ยง

SqlxPostgresPoolConnection(SqlxPostgresPoolConnection)

Create a PostgreSQL database connection and pool

ยง

SqlxSqlitePoolConnection(SqlxSqlitePoolConnection)

Create a SQLite database connection and pool

ยง

MockDatabaseConnection(Arc<MockDatabaseConnection>)

Create a Mock database connection useful for testing

ยง

ProxyDatabaseConnection(Arc<ProxyDatabaseConnection>)

Create a Proxy database connection useful for proxying

ยง

Disconnected

The connection to the database has been severed

Implementationsยง

Sourceยง

impl DatabaseConnection

Source

pub fn as_mock_connection(&self) -> &MockDatabaseConnection

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>

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

Generate a database connection for testing the Proxy database

ยงPanics

Panics if DbConn is not a proxy connection.

Sourceยง

impl DatabaseConnection

Source

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

Sets a callback to metric this connection

Source

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

Checks if a connection to the database is still valid.

Source

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

Explicitly close the database connection

Sourceยง

impl DatabaseConnection

Source

pub fn get_mysql_connection_pool(&self) -> &MySqlPool

Get sqlx::MySqlPool

ยงPanics

Panics if DbConn is not a MySQL connection.

Source

pub fn get_postgres_connection_pool(&self) -> &PgPool

Get sqlx::PgPool

ยงPanics

Panics if DbConn is not a Postgres connection.

Source

pub fn get_sqlite_connection_pool(&self) -> &SqlitePool

Get sqlx::SqlitePool

ยงPanics

Panics if DbConn is not a SQLite connection.

Trait Implementationsยง

Sourceยง

impl ConnectionTrait for DatabaseConnection

Sourceยง

fn get_database_backend(&self) -> DbBackend

Fetch the database backend as specified in DbBackend. This depends on feature flags enabled.
Sourceยง

fn execute<'life0, 'async_trait>( &'life0 self, stmt: Statement, ) -> Pin<Box<dyn Future<Output = Result<ExecResult, DbErr>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Execute a Statement
Sourceยง

fn execute_unprepared<'life0, 'life1, 'async_trait>( &'life0 self, sql: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<ExecResult, DbErr>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Execute a unprepared Statement
Sourceยง

fn query_one<'life0, 'async_trait>( &'life0 self, stmt: Statement, ) -> Pin<Box<dyn Future<Output = Result<Option<QueryResult>, DbErr>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Execute a Statement and return a query
Sourceยง

fn query_all<'life0, 'async_trait>( &'life0 self, stmt: Statement, ) -> Pin<Box<dyn Future<Output = Result<Vec<QueryResult>, DbErr>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Execute a Statement and return a collection Vec<QueryResult> on success
Sourceยง

fn is_mock_connection(&self) -> bool

Check if the connection is a test connection for the Mock database
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<Pool<MySql>> for DatabaseConnection

Sourceยง

fn from(pool: MySqlPool) -> Self

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

impl From<Pool<Postgres>> for DatabaseConnection

Sourceยง

fn from(pool: PgPool) -> Self

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

impl From<Pool<Sqlite>> for DatabaseConnection

Sourceยง

fn from(pool: SqlitePool) -> 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 stream<'a>( &'a self, stmt: Statement, ) -> Pin<Box<dyn Future<Output = Result<Self::Stream<'a>, DbErr>> + Send + 'a>>

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

impl TransactionTrait for DatabaseConnection

Sourceยง

fn transaction<'life0, 'async_trait, F, T, E>( &'life0 self, _callback: F, ) -> Pin<Box<dyn Future<Output = Result<T, TransactionError<E>>> + Send + 'async_trait>>
where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'c>> + Send + 'async_trait, T: Send + 'async_trait, E: Error + Send + 'async_trait, Self: 'async_trait, 'life0: 'async_trait,

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<'life0, 'async_trait, F, T, E>( &'life0 self, _callback: F, _isolation_level: Option<IsolationLevel>, _access_mode: Option<AccessMode>, ) -> Pin<Box<dyn Future<Output = Result<T, TransactionError<E>>> + Send + 'async_trait>>
where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'c>> + Send + 'async_trait, T: Send + 'async_trait, E: Error + Send + 'async_trait, Self: 'async_trait, 'life0: 'async_trait,

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 begin<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<DatabaseTransaction, DbErr>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

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

fn begin_with_config<'life0, 'async_trait>( &'life0 self, _isolation_level: Option<IsolationLevel>, _access_mode: Option<AccessMode>, ) -> Pin<Box<dyn Future<Output = Result<DatabaseTransaction, DbErr>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

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> 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> Same for T

Sourceยง

type Output = T

Should always be Self
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<V, T> VZip<V> for T
where V: MultiLane<T>,

Sourceยง

fn vzip(self) -> V

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