-
I'm currently using alasql to import a csv file, from a known directory within the app, into a table. It works great with desktop browsers, but I'm unable to get it to work within the iOS emulator. I …
-
* [ ] Add unit tests to lineup leaderboard
* [ ] Idea? Add ability to switch luck on/off
* [x] Player leaderboards (#132)
* [x] Add RAPM to player leaderboard #133
* [ ] Idea? Add RAPM/Rtg "…
-
``` js
var res = alasql(function(){/*
CREATE TABLE one (
t TEXT
);
INSERT INTO one VALUES ('My
huge * * * * * * * * * * * * * ************* ****** ****** text');
…
-
vue3 ts
···
// it is work, and console print [{...}]
let arr = [{ "name": "中文", "addr": "中文" }, { "name": "文", "addr": "文" }];
let res = alasql("SELECT * FROM ? WHERE name like '%文%'", [arr]);
…
noday updated
10 months ago
-
Hello,
Could you include a better example on your [WIKI](https://github.com/agershun/alasql/wiki/TypeScript) page on how to configure one NG2 project using AlaSQL.
I have added a comment on (iss…
-
This sequence
``` js
alasql('SELECT * FROM TSV("sensor_data.txt",{headers:true}) ORDER BY 1',[],function(res){
console.log(res);
});
```
gives error:
```
alasql.min.js:5 Uncaugh…
-
Thank you for your awesome work. This is an excellent library.
A huge portion of the code weight is devoted to supporting xlsx. While that may be a big portion of your users, it's not all of them. It…
-
Example:
``` javascript
alasql("INSERT INTO [Test] VALUES ?", {a: 1, b: {c: 2}})
```
Can I update property **b.c** of inserted object in UPDATE statement?
I mean somthing like
``` javascript
alasql…
-
Using alasql 0.3.9 in browser (Firefox, Chrome).
The code below prints out the contents of the table, but no value is assigned to aid:
alasql.promise( 'CREATE INDEXEDDB DATABASE IF NOT EXISTS …
-
Hi We are planing to upgrade the alssql version from .2 to 1.7.3. We are using the browser version of alasql and download from https://cdn.jsdelivr.net/npm/alasql@1.7( Got this link from official…