Struct sqlx_core::any::AnyConnection [−][src]
pub struct AnyConnection(_);
Expand description
A connection to any SQLx database.
The database driver used is determined by the scheme of the connection url.
postgres://postgres@localhost/test
sqlite://a.sqlite
Trait Implementations
type Connection = &'c mut <Any as Database>::Connection
type Options = AnyConnectOptions
Explicitly close this database connection. Read more
Checks if a connection to the database is still valid.
Begin a new transaction or establish a savepoint within the active transaction. Read more
The number of statements currently cached in the connection.
Removes all statements from the cache, closing them on the server if needed. Read more
Execute the function inside a transaction. Read more
Establish a new database connection. Read more
fn fetch_many<'e, 'q: 'e, E: 'q>(
self,
query: E
) -> BoxStream<'e, Result<Either<AnyQueryResult, AnyRow>, Error>> where
'c: 'e,
E: Execute<'q, Self::Database>,
fn fetch_many<'e, 'q: 'e, E: 'q>(
self,
query: E
) -> BoxStream<'e, Result<Either<AnyQueryResult, AnyRow>, Error>> where
'c: 'e,
E: Execute<'q, Self::Database>,
Execute multiple queries and return the generated results as a stream from each query, in a stream. Read more
Execute the query and returns at most one row.
fn prepare_with<'e, 'q: 'e>(
self,
sql: &'q str,
_parameters: &[AnyTypeInfo]
) -> BoxFuture<'e, Result<AnyStatement<'q>, Error>> where
'c: 'e,
fn prepare_with<'e, 'q: 'e>(
self,
sql: &'q str,
_parameters: &[AnyTypeInfo]
) -> BoxFuture<'e, Result<AnyStatement<'q>, Error>> where
'c: 'e,
Prepare the SQL query, with parameter type information, to inspect the type information about its parameters and results. Read more
Execute the query and return the total number of rows affected.
fn execute_many<'e, 'q: 'e, E: 'q>(
self,
query: E
) -> BoxStream<'e, Result<<Self::Database as Database>::QueryResult, Error>> where
'c: 'e,
E: Execute<'q, Self::Database>,
fn execute_many<'e, 'q: 'e, E: 'q>(
self,
query: E
) -> BoxStream<'e, Result<<Self::Database as Database>::QueryResult, Error>> where
'c: 'e,
E: Execute<'q, Self::Database>,
Execute multiple queries and return the rows affected from each query, in a stream.
Execute the query and return the generated results as a stream.
Execute the query and return all the generated results, collected into a Vec
.
Execute the query and returns exactly one row.