Lines Matching refs:query_row
767 let result: Result<f64> = db.query_row("SELECT half(6)", NO_PARAMS, |r| r.get(0)); in test_function_half()
782 let result: Result<f64> = db.query_row("SELECT half(6)", NO_PARAMS, |r| r.get(0)); in test_remove_function()
786 let result: Result<f64> = db.query_row("SELECT half(6)", NO_PARAMS, |r| r.get(0)); in test_remove_function()
834 db.query_row("SELECT regexp('l.s[aeiouy]', 'lisa')", NO_PARAMS, |r| { in test_function_regexp_with_auxilliary()
840 let result: Result<i64> = db.query_row( in test_function_regexp_with_auxilliary()
874 let result: String = db.query_row(query, NO_PARAMS, |r| r.get(0)).unwrap(); in test_varargs_function()
894 .query_row( in test_get_aux_type_checking()
950 let result: Option<i64> = db.query_row(no_result, NO_PARAMS, |r| r.get(0)).unwrap(); in test_sum()
954 let result: i64 = db.query_row(single_sum, NO_PARAMS, |r| r.get(0)).unwrap(); in test_sum()
960 .query_row(dual_sum, NO_PARAMS, |r| Ok((r.get(0)?, r.get(1)?))) in test_sum()
978 let result: i64 = db.query_row(no_result, NO_PARAMS, |r| r.get(0)).unwrap(); in test_count()
982 let result: i64 = db.query_row(single_sum, NO_PARAMS, |r| r.get(0)).unwrap(); in test_count()