Trait diesel::connection::SimpleConnection[][src]

pub trait SimpleConnection {
    fn batch_execute(&self, query: &str) -> QueryResult<()>;
}
Expand description

Perform simple operations on a backend.

You should likely use Connection instead.

Required methods

Execute multiple SQL statements within the same string.

This function is used to execute migrations, which may contain more than one SQL statement.

Implementors