pub trait SqlConnection: Send {
    fn batch_execute<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        sql: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<(), C3p0Error>> + Send + 'async_trait, Global>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors