I am developing a webpage for offline CRUD for a sqlite database using sqlite.
I have little experience with javascript, none with jquery, and a little with sqlite but none with developing it within javascript. I began using this tutorial
here
I noticed however that the data doesn’t seem to be writing to the database itself and is browser dependent. If I open it with Chrome it only remembers the data from previous sessions in chrome and if I open it with opera it only reads the data from other sessions in opera. When I inspect the database file I don’t see data being saved to it.
Are there separate databases running in the background of the actual browsers themselves or is this tutorial not saving the data to the database itself? If it is not saving to the database then how do I save using javascript?
Thank you!
HTML5has sqlite database.So.. each browser implements this using
w3c standard.. This has nothing to do with any local database server. Sqlite is an embeded database…So.. yes, it is browser dependent…
An example for you: you can compare
sqlitetocookiesbut cooler 🙂