0

Is there any way I could use HTML or JavaScript to make GET/POST requests directly on SQLite database. I want to add rows to the database and be able to retrieve data and display it on a webpage?

P.S. I know I could use PHP but I am not very comfortable with it.

jainilvachhani
  • 708
  • 6
  • 13

1 Answers1

1

I am not sure what your application requirements are, It is not advisable to query SQL directly from the client. Although you can use library like:

http://www.js-data.io/docs/js-data-sql

which has a SQL adapter so that you can query it directly using JS.