Polyfill for browsers lacking WebSQL implementation (i.e. Firefox & IE)
Simply put, imagine an application at hand that uses web sql storage methods, such as those found in the Cordova Storage API. This Polyfill helps with making it run- and testable on Firefox and IE.
Clone the project recursively in order to get the depending sql.js code:
git clone --recursive [email protected]:Philzen/WebSQL-Polyfill.git {target_folder}
Then, simply include the script in your html:
<script src="{target_folder}/websql-polyfill.js" type="text/javascript" ></script>
WebSQL-Polyfill lazy-loads the dependency script into the DOM on-demand given that:
a. window.openDatabase is not defined
b. you are actually calling window.openDatabase at least once
Otherwise, nothing will be loaded, executed and polyfilled, as there is no need for it in those cases.
- Datastore is not persisted during requests
- Though asynchronous websql API is adapted, currently everything executes in a synchronous manner
- use exportData()-method of sql.js to persist data after each transaction
- add option to select localStorage vs. IndexedDb for persistence, when both are available (where indexedDb persistence should restore asynchronous behaviour)
This project currently uses sql.js to enable easy abstraction of an SQLite database in memory.