The demo page provides access to four separate databases. The sample "array" module is installed in each one to provide access to some stock data directly from a Javascript array using a virtual table:
CREATE VIRTUAL TABLE IF NOT EXISTS goog USING array;
However, this is not working on the database using IndexedDbVFS. CREATE VIRTUAL TABLE doesn't return an error but attempting to access the table, e.g. with...
SELECT * FROM goog LIMIT 5;
...returns a "no such table: goog" error.
The text was updated successfully, but these errors were encountered:
The demo page provides access to four separate databases. The sample "array" module is installed in each one to provide access to some stock data directly from a Javascript array using a virtual table:
CREATE VIRTUAL TABLE IF NOT EXISTS goog USING array;However, this is not working on the database using IndexedDbVFS.
CREATE VIRTUAL TABLEdoesn't return an error but attempting to access the table, e.g. with...SELECT * FROM goog LIMIT 5;...returns a "no such table: goog" error.
The text was updated successfully, but these errors were encountered: