Trait sqlx_clickhouse_ext::executor::ExecutorExt [−][src]
Provided methods
fn execute(self, sql: &'q str) -> BoxFuture<'async_trait, Result<(), Error>>
[src]
fn fetch_all(
self,
sql: &'q str
) -> BoxFuture<'async_trait, Result<Vec<T>, Error>>
[src]
self,
sql: &'q str
) -> BoxFuture<'async_trait, Result<Vec<T>, Error>>
fn fetch_one(self, sql: &'q str) -> BoxFuture<'async_trait, Result<T, Error>>
[src]
fn fetch_optional(
self,
sql: &'q str
) -> BoxFuture<'async_trait, Result<Option<T>, Error>>
[src]
self,
sql: &'q str
) -> BoxFuture<'async_trait, Result<Option<T>, Error>>