Reading and writing to a local sqlite database from an application installed in Chrome

Is it possible to read and write to a local sqlite file from a chrome-packaged application? I am currently reading and writing to json a file with application data that is locally stored on the hard drive, but I also want to be able to do this using the sqlite database. I need it to be local and not on disk, since I will interact with it from other (non-chrome) processes. And even loading a file from disk (using the sync file system instead of the file system), I have no idea how to access the sqlite file

+4
source share
1 answer

SQLite support for Chrome Packaged Apps will be great. After all, Chrome on the desktop and on Android supports it.

But this is not so. There is an open problem for him - join us!

https://code.google.com/p/chromium/issues/detail?id=339579

0
source

Source: https://habr.com/ru/post/1499000/


All Articles