Reputation: 11
Im trying to view database on my web app. The problem here is that it does not view from SQLite. rather view database from chrome add-ons. Is there any way for me to view SQlite databse using Jscript?
Upvotes: 0
Views: 177
Reputation: 944498
There is no way to directly access an arbitrary SQLite database via client side JavaScript running in a web browser.
If your database exists on a webserver, then you can write an HTTP based API (ideally one that is RESTful) and interact with it via the XMLHttpRequest object.
Upvotes: 2