Searched refs:query_map (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/rusqlite/src/vtab/ |
D | array.rs | 213 let rows = stmt.query_map(&[&ptr], |row| row.get::<_, i64>(0)).unwrap(); in test_array_module()
|
D | series.rs | 290 let series = s.query_map(NO_PARAMS, |row| row.get::<_, i32>(0)).unwrap(); in test_series_module()
|
/external/rust/crates/rusqlite/ |
D | Changelog.md | 140 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`.
|
D | README.md | 47 let person_iter = stmt.query_map(params![], |row| {
|
/external/rust/crates/rusqlite/src/types/ |
D | to_sql.rs | 325 .query_map(NO_PARAMS, |row| { in test_i128()
|
/external/rust/crates/rusqlite/src/ |
D | statement.rs | 228 pub fn query_map<T, P, F>(&mut self, params: P, f: F) -> Result<MappedRows<'_, F>> in query_map() method
|