Open bennycode opened 8 years ago
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 name
and order by timestamp
?
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.