-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DataError in Microsoft Edge #95
Comments
Yes, it is known issue for over three years now. MS don't have time to fix, so I am. |
So can you tell me what's the problem in Edge? Why is it complaining? Maybe I can setup a different database schema to go work around this issue. |
Yes, avoid multiEntry and compound index. See more on https://dev.yathit.com/ydn-db/doc/setup/limitation.html |
Ok, thanks for the fast reply. So with Edge I cannot use a schema like this: {
name: 'name, timestamp',
keyPath: [
'name', 'timestamp'
]
} But this is needed when I want to do queries like: db.from('users').where('name', '=', 'Homer').order('timestamp'); Is there another way of not using a compound index but being able to query by |
There is support in Edge for basic IndexDb. They're considering adding more complex features. More info from Microsoft regarding this here. |
Hello, by using YDN in my web application with Microsoft Edge I am getting a
DataError
. The JavaScript inspector says it comes fromkey_range.js (265,3)
.I am using:
When I run the same code in Chrome or Firefox, then it works.
The text was updated successfully, but these errors were encountered: