Home
last modified time | relevance | path

Searched refs:query_map (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/rusqlite/src/vtab/
Darray.rs213 let rows = stmt.query_map(&[&ptr], |row| row.get::<_, i64>(0)).unwrap(); in test_array_module()
Dseries.rs290 let series = s.query_map(NO_PARAMS, |row| row.get::<_, i32>(0)).unwrap(); in test_series_module()
/external/rust/crates/rusqlite/
DChangelog.md140 use of `query_map` and `query_and_then` over raw `query`; both of theose still return handles
210 * Slight change to the closure types passed to `query_map` and `query_and_then`:
231 `query_row` and `query_map` but allow functions that can fail by returning `Result`s.
250 * Add `query_map`.
DREADME.md47 let person_iter = stmt.query_map(params![], |row| {
/external/rust/crates/rusqlite/src/types/
Dto_sql.rs325 .query_map(NO_PARAMS, |row| { in test_i128()
/external/rust/crates/rusqlite/src/
Dstatement.rs228 pub fn query_map<T, P, F>(&mut self, params: P, f: F) -> Result<MappedRows<'_, F>> in query_map() method