When using the SQLite extension from a computer without internet access, it fails to attach the database.
The error is: Catalog Error: SET schema: No catalog + schema named "hello" found
The SQLite extension is on the file system, and is installed and used as follows:
INSTALL '/plugins/sqlite_scanner.duckdb_extension';
ATTACH './hello.db' AS hello (TYPE SQLITE, READ_ONLY TRUE); USE 'hello';
This is being called from a Rust application using duckdb-rs.