David Fahlander

Results 556 comments of David Fahlander

liveQuery() is not dependant on the indexedDB being present on the global object actually. It depends on [globalEvents](https://github.com/dexie/Dexie.js/blob/master/src/globals/global-events.ts) which is basically an event set with one single event "x-storagemutated-1". This...

I've never heard anyone having this problem with Dexie before. To get a clue of a reason, could you point me to where in your code you declare your dexie...

I suppose the error is that the dexieHistory does not represent a true picture of the real installed database. For example, if an earlier version (say version 2) installed a...

Here's an easier fiddle (to log the current installed schema) to use: https://jsfiddle.net/dfahlander/b8Levamm/

No, there's no significance of the order. Actually this only implies that those databases have been upgraded (for example if isDeletable or name index was added in a certain version)....

@iway1 I get it - should give better error messages for this common mistake. Any PR is extremely welcome! Am I correct if you intentionally do orderBy() using a non-indexed...

The entries table define `[_timeFormatted+type]` twice in the same table (So does also the `performance` table).

Thanks for the improvement suggestion. When having many indexes on a table, they can be declared in a template string to get them one line at a time: ```js this.version(5).stores({...

When looking at your index list I see that you could remove another 2 indexes that are already included in some compound versions: * `_time` is already included in `[_time+type]`...

Sorry I missed this issue. This functionality would be a bit too complex to fit within the scope of dexie but it could equally well be implemented outside or possibly...