You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_( [à la](http://en.wiktionary.org/wiki/%C3%A0_la)[SQL](http://en.wikipedia.org/wiki/SQL) ) [ælæ ɛskju:ɛl]_ - AlaSQL is an open source SQL database for Javascript with a strong focus on query speed and datasource flexibility for relational data, schemaless data, and graph data. It works in your browser, Node.js, IO.js and Cordova.
20
19
@@ -146,7 +145,7 @@ When you feel you got the grip you can check out the wiki section about [data ma
146
145
The project has never received any funding and is based on unpaid voluntary work: [We really (really) love pull requests](https://github.com/agershun/alasql/blob/develop/CONTRIBUTING.md)
147
146
148
147
149
-
AlaSQL project is very young and still in active development phase, therefore it <s>may</s> have [bugs](https://github.com/agershun/alasql/labels/Bug). Please, submit any bugs and suggestions [as an issue](https://github.com/agershun/alasql/issues/new). AlaSQL uses [Semantic Versioning](http://semver.org/) so please note that major version is zero (0.y.z) and the API can not be considered 100% stable. Consider this before using the library in production.
148
+
AlaSQL project is very young and still in active development phase, therefore it <s>may</s> have [bugs](https://github.com/agershun/alasql/labels/Bug). Please, submit any bugs and suggestions [as an issue](https://github.com/agershun/alasql/issues/new). AlaSQL uses [Semantic Versioning](http://semver.org/) so please note that major version is zero (0.y.z) and the API can not be considered 100% stable. Consider this before using the library in production.
150
149
151
150
Please checkout the [limitations of the library](https://github.com/agershun/alasql#limitations)
152
151
@@ -564,11 +563,15 @@ Please be aware that AlaSQL ~~may~~ have [bugs](https://github.com/agershun/alas
564
563
565
564
0. A `(FULL) OUTER JOIN` and `RIGHT JOIN` on more than 2 tables will not give the expected results. `INNER JOIN` and `LEFT JOIN` are ok.
566
565
566
+
0. Please use aliasfor field names with the same name (`SELECT a.id as a_id, b.id as b_id FORM ?`).
567
+
567
568
Probably, there are many of others. Please, help us to fix them by [submitting it as an issue](https://github.com/agershun/alasql/issues). Thank you!
568
569
569
570
570
571
572
+
## Bleeding edge
571
573
574
+
If you want to try the last development version of the library please download [this file](https://github.com/agershun/alasql/blob/develop/dist/alasql.js) or visit the [testbench](https://rawgit.com/agershun/alasql/develop/utils/testbench.html) to play around in the browser console.
572
575
573
576
## Tests
574
577
@@ -581,6 +584,12 @@ AlaSQL uses ```mocha``` for tests. Install mocha and run
581
584
```
582
585
or run [test/index.html](test/index.html) fortestsin browser (Please serve via localhost with for example `http-server`).
583
586
587
+
588
+
589
+
590
+
591
+
592
+
584
593
#### Tests with AlaSQL ASSERT from SQL
585
594
586
595
Now you can use AlaSQL [ASSERT](wiki/Assert) operator to test results of previous operation:
0 commit comments