Struct sqlx_core::mysql::MySqlConnection [−][src]
pub struct MySqlConnection { /* fields omitted */ }
Expand description
A connection to a MySQL database.
Trait Implementations
type Connection = &'c mut <MySql as Database>::Connection
type Options = MySqlConnectOptions
Explicitly close this database connection. Read more
Checks if a connection to the database is still valid.
The number of statements currently cached in the connection.
Removes all statements from the cache, closing them on the server if needed. Read more
Begin a new transaction or establish a savepoint within the active transaction. 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<MySqlQueryResult, MySqlRow>, Error>> where
'c: 'e,
E: Execute<'q, Self::Database>,
fn fetch_many<'e, 'q: 'e, E: 'q>(
self,
query: E
) -> BoxStream<'e, Result<Either<MySqlQueryResult, MySqlRow>, 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: &'e [MySqlTypeInfo]
) -> BoxFuture<'e, Result<MySqlStatement<'q>, Error>> where
'c: 'e,
fn prepare_with<'e, 'q: 'e>(
self,
sql: &'q str,
_parameters: &'e [MySqlTypeInfo]
) -> BoxFuture<'e, Result<MySqlStatement<'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.