MCPcopy Create free account
hub / github.com/encrypted-spaces/prototype / select

Method select

sdk/src/table.rs:137–139  ·  view source on GitHub ↗

Begin building a `SELECT` query on this table. The returned [`SelectBuilder `] lets you specify predicates, ordering, limits, and then fetch typed rows. # Examples ```ignore let rows = users .select() .where_gte("age", 18) .descending() .limit(10) .all:: ()?; ```

(&self)

Source from the content-addressed store, hash-verified

135 /// .all::<UserRow>()?;
136 /// ```
137 pub fn select(&self) -> SelectBuilder<T, Unpredicated> {
138 SelectBuilder::new(self.name.clone(), Arc::clone(&self.space))
139 }
140
141 /// Insert a row and return an insert builder.
142 ///

Callers 15

do_insertFunction · 0.45
do_select_allFunction · 0.45
do_select_by_predicateFunction · 0.45
do_select_joinFunction · 0.45
initialize_usersMethod · 0.45
remove_userMethod · 0.45
rekeyMethod · 0.45
read_messagesFunction · 0.45

Calls 1

cloneMethod · 0.45