1

Where can I find the locations that are made from alasql? For example

alasql('CREATE TABLE one (two INT)');

Where is table one will be saved?

Al Ryan Acain
  • 477
  • 8
  • 17

1 Answers1

2

The table one will be saved in the global variable alasql.tables.one.

The data you put into the table one will be located in the global variable alasql.tables.one.data.

mathiasrw
  • 610
  • 4
  • 10