After a long search still am not able to find a difference between Web SQL and SQLite.
- Are both HTML5 based?
- Web SQL has a storage limit whereas with SQLite there is no storage limit?
Is an external plugin required for SQLite in phonegap? As documentation states that following code will create a SQLite database:
var db = window.openDatabase("test", "1.0", "Test DB", 1000000);
Any suggestion is much appreciated.