Home
last modified time | relevance | path

Searched refs:query_and_then (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/rusqlite/src/
Dlib.rs1593 .query_and_then(NO_PARAMS, |row| row.get(1)) in test_query_and_then()
1614 .query_and_then(NO_PARAMS, |row| row.get(1)) in test_query_and_then_fails()
1624 .query_and_then(NO_PARAMS, |row| row.get(3)) in test_query_and_then_fails()
1648 .query_and_then(NO_PARAMS, |row| row.get(1).map_err(CustomError::Sqlite)) in test_query_and_then_custom_error()
1669 .query_and_then(NO_PARAMS, |row| row.get(1).map_err(CustomError::Sqlite)) in test_query_and_then_custom_error_fails()
1679 .query_and_then(NO_PARAMS, |row| row.get(3).map_err(CustomError::Sqlite)) in test_query_and_then_custom_error_fails()
1689 .query_and_then(NO_PARAMS, |_| Err(CustomError::SomeError)) in test_query_and_then_custom_error_fails()
Dstatement.rs286 pub fn query_and_then<T, E, P, F>(&mut self, params: P, f: F) -> Result<AndThenRows<'_, F>> in query_and_then() method
/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`:
230 * Add `query_row_and_then` and `query_and_then` convenience functions. These are analogous to