Reputation: 691
I'm writing a report and can't remember where I read that. Their reason for switching to indexedDB
Upvotes: 0
Views: 100
Reputation: 4180
The problem with WebSQL was which SQL dialect to use. Every browser would implement his own db in the backgroud with his own SQL dialect, and this would mean there is no standardisation. For more info about it read here
Upvotes: 1
Reputation: 13131
WebSQL is deprecated. IndexedDB is the new standard, and of course, better in the spirit Javascript style and scalability.
Upvotes: 0