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
fetch('./parquet.duckdb_extension.wasm').then(res=>res.blob()).then(blob=>{constblobURL=URL.createObjectURL(blob);conn.query(`LOAD '${blobURL}'`);// Currently fails});
3.Parquet File Loading:
fetch('./data.parquet').then(res=>res.blob()).then(blob=>{constblobURL=URL.createObjectURL(blob);conn.query(`CREATE TABLE test AS SELECT * FROM read_parquet('${blobURL}')`);// Currently fails});
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm requesting support for blob URLs in DuckDB-WASM. Currently, using blob URLs with methods like LOAD and read_parquet() results in errors like:
Common Use Cases:
These patterns are common when working with browser-generated blobs:
1.Direct Blob Creation:
2.Extension Loading:
3.Parquet File Loading:
Beta Was this translation helpful? Give feedback.
All reactions