-
I tried to generate a xlsx file in apache cordova. its working fine in emulator but does not respond in device
-
Using alasql v0.3.9.
This works (in browser):
alasql('CREATE INDEXEDDB DATABASE IF NOT EXISTS geo;\
ATTACH INDEXEDDB DATABASE geo; \
USE geo;', function(){} );
Thi…
-
Assume this code:
``` javascript
var insert1;
alasql('CREATE INDEXEDDB DATABASE IF NOT EXISTS wsr', [], function(){
alasql('ATTACH INDEXEDDB DATABASE wsr', [], function(){
al…
-
```
var alasql = require("alasql");
alasql("CREATE TABLE tbleName (a INT, b INT,c INT)");
var data = [{
a: 1,
b: 1,
c: 1
}, {
a: 1,
b: 2,
c: 1
}, {
a: 1,
…
-
AlaSQL 0.2.0 has a bug related to selecting elements that ARE null
# Short version
Selecting rows where a is null returns no rows
```
JSON.stringify(alasql('SELECT * from ? where a = null', [[{id:1,…
-
In AlaSQL 1.7.3 I see strange bug with COALESCE.
In AlaSQL 0.4.11 I saw this bug too.
Sample is very simple.
```JavaScript
JSON.stringify(alasql(`SELECT COALESCE(sample, "") As sample, field FRO…
-
Hello ,
I want to have the last insert id of a table of a localstorage database.
Here is the code:
``` js
alasql('CREATE localStorage DATABASE IF NOT EXISTS Eisenhower');
alasql('ATTACH localStorage …
-
_Spawned from https://github.com/agershun/alasql/issues/547#issuecomment-388832335_
----
The `alasql.options.joinstar` option seems not working now.
If we reproduce the example of @f…
-
Hi,
Whilst looking at bug #1009 i tried to replicate but couldnt. When i checked further I noticed that neither foreign key integrity nor primary key uniqueness is validated. It is possible that my c…
-
Hi!
i'm trying to install AlaSQL under:
Win10
node v7.0.0
Meteor 1.4.2
but i'm receiving this message back:
```
C:\radar>meteor add agershun:alasql
=> Errors while adding packages:
W…