-
Notifications
You must be signed in to change notification settings - Fork 665
Compiled statements
Mathias Rangel Wulff edited this page Nov 24, 2015
·
2 revisions
Compiled statement examples:
var bigSum = alasql.compile('SELECT SUM(a) FROM one WHERE a>?', 'myDBname'); // no DBname needed
var foo = bigSum([10]) ;
var ins = alasql.compile('INSERT INTO one VALUES (?,?)'); // no DBname needed
ins(1,10);
ins(2,20);
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo