Struct rbdc_mysql::connection::MySqlConnection
source · pub struct MySqlConnection {
pub stream: DropBox<MySqlStream>,
pub cache_statement: StatementCache<(u32, MySqlStatementMetadata)>,
}Expand description
A connection to a MySQL database.
Fields§
§stream: DropBox<MySqlStream>§cache_statement: StatementCache<(u32, MySqlStatementMetadata)>Implementations§
source§impl MySqlConnection
impl MySqlConnection
pub async fn execute(&mut self, sql: &str) -> Result<Option<MySqlRow>, Error>
pub fn fetch_many(
&mut self,
query: MysqlQuery
) -> BoxStream<'_, Result<Either<MySqlQueryResult, MySqlRow>, Error>>
pub fn fetch_optional(
&mut self,
query: MysqlQuery
) -> BoxFuture<'_, Result<Option<MySqlRow>, Error>>
pub fn prepare_with<'e>(
&'e mut self,
sql: &'e str,
_: &'e [MySqlTypeInfo]
) -> BoxFuture<'e, Result<MySqlStatement, Error>>
Trait Implementations§
source§impl Connection for MySqlConnection
impl Connection for MySqlConnection
source§fn get_rows(
&mut self,
sql: &str,
params: Vec<Value>
) -> BoxFuture<'_, Result<Vec<Box<dyn Row>>, Error>>
fn get_rows(
&mut self,
sql: &str,
params: Vec<Value>
) -> BoxFuture<'_, Result<Vec<Box<dyn Row>>, Error>>
Execute a query that is expected to return a result set, such as a
SELECT statement