-
JsStore is an IndexedDB Wrapper. It makes IndexedDB super easy with its SQL like apis.
Doc link - http://jsstore.net/
Github - https://github.com/ujjwalguptaofficial/JsStore
-
When applying the 'orderBy' control and a 'join' control at the same time JsStore throws errors...
Steps to reproduce: (https://ujjwalguptaofficial.github.io/idbstudio/?db=Demo)
```
select({
f…
-
**can u put the some feature to native api ? for example:**
function hcdb_transation_txlogic(data) {
var txScope = this;
var fns = function(txLogic_){
var txLogic = txLogic_;
…
-
Have you planed to implement SQL offset option?
I found out limit option but it looks like there is no offset option available.
Thanks.
-
Hi
You can use "as" for aliasing a column name just like sql. Here is an example -
```
select Customers.CustomerName as name, Customers.ContactName as cName, Customers.CustomerID as cId from …
-
Hi,
After inserting the data into JSStore is it possible to export the data to a CSV or an Excel File.
Thanks,
Rajesh
-
When performing a left join, there is an error when applying an 'as' option
Example (https://ujjwalguptaofficial.github.io/idbstudio/?db=Demo)
Initialise with:
```
update({
in: "Orders",
…
-
Like is not working as spected
Hi,
I am trying to use the operator Like but is not working, I don't know if there is anything missing on my side or the query i wrong.
**Table:**
var tblCatalo…
-
I'm attempting to implement a client-side intercept of php calls in a pwa offline-enabled web site. I am able to use JsStore in the service-worker's scope but when I try to call runSql so I can re-us…
-
this error is occus by join query where join column's value is null:
table1's cloumn return null vlaue, use the null vlaue as a index to query table2, and then there's the crash mistake,the jsstore f…