I have an arrow table that I'm trying to query with DuckDB_wasm but I'm getting an error that the table doesn't exist. I have this...
const dlURL="http://localhost:7071/api/getdata"
const arrowTable = await tableFromIPC(fetch(dlURL))
const c = await db.connect();
await c.insertArrowTable(arrowTable , {name: 'arrowTable'})
let qres = await c.query("select * from arrowTable")
To be clear, arrowTable
definitely exists. I think I'm just missing the proper syntax between insertArrowTable
and the subsequent query.