Trait cdrs::query::PrepareExecutor[][src]

pub trait PrepareExecutor<'a, T: CDRSTransport + 'a>: GetTransport<'a, T> + GetCompressor<'a> {
    fn prepare_tw<Q: ToString>(
        &'a mut self,
        query: Q,
        with_tracing: bool,
        with_warnings: bool
    ) -> Result<PreparedQuery> { ... }
fn prepare<Q: ToString>(&'a mut self, query: Q) -> Result<PreparedQuery> { ... } }

Provided Methods

It prepares a query for execution, along with query itself the method takes with_tracing and with_warnings flags to get tracing information and warnings.

It prepares query without additional tracing information and warnings.

Implementors