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

Method into_selector_raw

src/executor/select.rs:772–782  ·  view source on GitHub ↗
(self, db: &C)

Source from the content-addressed store, hash-verified

770 }
771
772 fn into_selector_raw<C>(self, db: &C) -> SelectorRaw<S>
773 where
774 C: ConnectionTrait,
775 {
776 let builder = db.get_database_backend();
777 let stmt = builder.build(&self.query);
778 SelectorRaw {
779 stmt,
780 selector: self.selector,
781 }
782 }
783
784 /// Get the SQL statement
785 pub fn into_statement(self, builder: DbBackend) -> Statement {

Callers 3

oneMethod · 0.80
allMethod · 0.80
streamMethod · 0.80

Calls 2

get_database_backendMethod · 0.45
buildMethod · 0.45

Tested by

no test coverage detected