-
Notifications
You must be signed in to change notification settings - Fork 665
Create Database
agershun edited this page Dec 12, 2014
·
6 revisions
To create Alasql 'native' database:
alasql('CREATE DATABASE mybase');
To create external (localStorage on IndexedDB) database:
alasql('CREATE LOCALSTORAGE DATABASE lsbase');
When you create external database, you need to attach database before usage:
alasql('CREATE INDEXEDDB DATABASE ixbase');
alasql('ATTACH INDEXEDDB DATABASE ixbase AS myixdb');
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo