You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use this library by passing --allow-ffi=THING where THING is the value I am passing to DENO_SQLITE_PATH. The script fails with the following error
error: Uncaught (in promise) PermissionDenied: Requires ffi access, run again with the --allow-ffi flag
export const SQLITE_VERSION = readCstr(sqlite3_libversion()!);
^
at getCString (ext:deno_ffi/00_ffi.js:159:16)
at https://deno.land/x/[email protected]/src/database.ts:103:31
I think we're not allowed to use the UnsafePointer and related APIs when you pass a specific path for --allow-ffi - possibly something that needs fixing in Deno itself than deno_sqlite3.
Hi!
I am trying to use this library by passing
--allow-ffi=THING
whereTHING
is the value I am passing toDENO_SQLITE_PATH
. The script fails with the following errorI am running on nixos, and
deno --version
showsThe text was updated successfully, but these errors were encountered: