(&self, stmt: Statement)
| 20 | } |
| 21 | |
| 22 | async fn execute(&self, stmt: Statement) -> Result<ExecResult, DbErr> { |
| 23 | match self { |
| 24 | SchemaManagerConnection::Connection(conn) => conn.execute(stmt).await, |
| 25 | SchemaManagerConnection::Transaction(trans) => trans.execute(stmt).await, |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | async fn execute_unprepared(&self, sql: &str) -> Result<ExecResult, DbErr> { |
| 30 | match self { |
no outgoing calls