-
# A certain number of tables cause the query speed to slow down seriously
# I have 27 tables,each query takes about 700 milliseconds.If I reduce the number of tables, the query will be faster,Until…
-
# Sort doesn't work for String type column having float values
Query:
select({
from: "HotelList",
order: {
by: 'HotelRating',
type: "desc"
…
-
I am trying to add JsStore in my react app but getting error as jsstore worker is not defined. How to setup Jsstore worker in react without using webpack? I also tried directly passing the path of jss…
-
# Making Atomic Updates on Multiple Tables
I am working on a toy example or using two tables: Accounts & Transactions. On adding a record to the Transaction table, I would also like to modify the …
-
# Error: Search is turned off for the Column 'ColumnName'
# Description
I'm trying to query the JsStore, but it throws above mentioned error. I haven't set `enableSearch: false`, and event tried …
-
Hi, congratulations for your excellent job on JsStore. I'm facing a problem with a query that contains a complex "WHERE" clause in addition to "skip" and "limit" options. More specifically when the "W…
-
Trying your library, so far is awesome, nice work!
I do have an issues with versioning though. I'm looking at your example of how to change a table by doing a select all, then changing schema, then…
-
Tasks Overhead
We have been running performance testing on our JsStore queries recently. We've notices that there is quite a significant overhead wasted on creating and destroying Tasks.
![image…
-
I am going through the docs but couldn't see option to select only few columns from a table.
Actually i need to select only few columns from 2 tables using join.
Would be really helpful if this fe…
-
Hi,
How can we implement MYSQL CASE function using jsstore.
For example,
SELECT CustomerName, City, Country,PhoneNumber,
(CASE
WHEN PhoneNumber IS NULL THEN ''
ELSE PhoneNumber
END) AS phone
…