IndexedDB support in Intel XDK
After describing options for database integration for mobile apps, this post describes a test that you can use to see if your browser supports IndexedDB. Database for Mobile Apps: When it comes to integrating mobile apps with databases there are two popular options, SQLite database or IndexedDB Database. While the former is a relational database, the latter is not-it is a storage for key/value pairs. This post here (http://hodentekmsss.blogspot.com/2016/09/sqlite-using-visual-studio-community.html) describes some details about SQLite database and the process of installing it on your computer. According to Mozilla Developer Network, " IndexedDB is a Web API for storing large data structures within browsers and indexing them for high-performance searching. Like an SQL-based RDBMS, IndexedDB is a transactional database system. However, it uses JavaScript objects rather than fixed columns tables to store data ." Complete details of this API are here ( https://developer...