pub trait SqlConnection: Connection {
    // Required methods
    fn fetch_query<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        query: &'life1 str,
        schema: &'life2 Schema
    ) -> Pin<Box<dyn Future<Output = Result<VegaFusionTable>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
    fn dialect(&self) -> &Dialect;
    fn to_connection(&self) -> Arc<dyn Connection>;
}

Required Methods§

source

fn fetch_query<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, query: &'life1 str, schema: &'life2 Schema ) -> Pin<Box<dyn Future<Output = Result<VegaFusionTable>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

source

fn dialect(&self) -> &Dialect

source

fn to_connection(&self) -> Arc<dyn Connection>

Implementors§