MCPcopy Create free account
hub / github.com/SeaQL/sea-orm / query_all

Method query_all

sea-orm-migration/src/connection.rs:43–48  ·  view source on GitHub ↗
(&self, stmt: Statement)

Source from the content-addressed store, hash-verified

41 }
42
43 async fn query_all(&self, stmt: Statement) -> Result<Vec<QueryResult>, DbErr> {
44 match self {
45 SchemaManagerConnection::Connection(conn) => conn.query_all(stmt).await,
46 SchemaManagerConnection::Transaction(trans) => trans.query_all(stmt).await,
47 }
48 }
49
50 fn is_mock_connection(&self) -> bool {
51 match self {

Callers 1

exec_freshFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected