Thank you for this crate, currently testing it out for our use case.
I have a question about the types used for xRead/xWrite/xFetch/xUnfetch offsets. In the SQLite C interface they're all documented as sqlite3_int64, but in this crate, only fetch/unfetch use an i64 while read/write try casting into a usize (e.g. here), failing if it doesn't fit.
Is this intended behaviour or an oversight?
Thank you for this crate, currently testing it out for our use case.
I have a question about the types used for
xRead/xWrite/xFetch/xUnfetchoffsets. In the SQLite C interface they're all documented assqlite3_int64, but in this crate, only fetch/unfetch use ani64while read/write try casting into ausize(e.g. here), failing if it doesn't fit.Is this intended behaviour or an oversight?