-
# How to use `INSERT IGNORE`?
#
```sql
CREATE TABLE subscribers (
id INT PRIMARY KEY AUTO_INCREMENT,
email VARCHAR(50) NOT NULL UNIQUE
);
INSERT IGNORE INTO subscribers(email)
V…
-
# v 4 works only with web workers?
1. I've just updated to v 4 from v 3. I create connection without web worker and get error in console
TypeError: Cannot read property 'run' of undefined
a…
-
4.0.6 I had no issues. 4.1.1 with no changes in my code I'm now getting:
connection_helper.ts:43 Uncaught ReferenceError: window is not defined
at Connection.get (connection_helper.ts:43)
…
-
# Title
How can I update dexie to JsStore gradually
# Description
I try to connect my indexeddb ( which is created by `dexie`) by `JsStore`
I found that `JsStore` will renew the table, and all…
xland updated
3 years ago
-
# Title
Is there some way to encrypt the data
# Description
Is there some way to encrypt the data
```js
const dataBase: IDataBase = {
name: dbname,
tables: [tblStudent],
…
xland updated
3 years ago
-
I am glad to see JSStore has TypeScript support, but I noticed several minor issues that I would like to document here for consideration.
1. Where objects are not as strongly typed as they could be…
-
# Title
How to work correctly with versioning
# Description
I'm new with jsStore, and while developing my webapp i was happy to see that you implemented a versioning option.
But now i cant…
-
I'm trying to add a primary key with multiple columns to store options trade data so only unique 5 minute bars are added. The only way I've found to do it is to define the primary key with a keypath l…
-
# Title
JsStore.Connection() -> initDb() silently failing to execute in version 4
# Description
Previously working code started failing over the weekend after version 4.0.2 was published.
Exec…
-
Add local db to store wallet transactions.
https://javascript.info/indexeddb
https://jsstore.net/ or https://dexie.org/
NSPV docs https://developers.komodoplatform.com/basic-docs/smart-chains…