Returns the [`sqlite3_value_bytes`](https://www.sqlite.org/c3ref/value_blob.html) result from the given sqlite3_value, as i32.
(value: &*mut sqlite3_value)
| 128 | /// Returns the [`sqlite3_value_bytes`](https://www.sqlite.org/c3ref/value_blob.html) result |
| 129 | /// from the given sqlite3_value, as i32. |
| 130 | pub fn value_bytes(value: &*mut sqlite3_value) -> i32 { |
| 131 | unsafe { sqlite3ext_value_bytes(value.to_owned()) } |
| 132 | } |
| 133 | |
| 134 | /// Returns the [`sqlite3_value_text`](https://www.sqlite.org/c3ref/value_blob.html) result |
| 135 | /// from the given sqlite3_value, as a str. If the number of bytes of the underlying value |
no test coverage detected