Calls [`sqlite3_result_error_code`](https://www.sqlite.org/c3ref/result_blob.html) to represent that a function returns xx with the given value.
(context: *mut sqlite3_context, code: i32)
| 329 | /// Calls [`sqlite3_result_error_code`](https://www.sqlite.org/c3ref/result_blob.html) |
| 330 | /// to represent that a function returns xx with the given value. |
| 331 | pub fn result_error_code(context: *mut sqlite3_context, code: i32) { |
| 332 | unsafe { sqlite3ext_result_error_code(context, code) }; |
| 333 | } |
| 334 | |
| 335 | /// Calls [`result_int`] with `value=1` for true, or `value=0` for false. |
| 336 | pub fn result_bool(context: *mut sqlite3_context, value: bool) { |
no test coverage detected