I have sqlite db runing on my server. I want to access it using client side javascript in browser. Is this possible?
As of now, I am using python to access the db and calling python scripts for db operations.
I have sqlite db runing on my server. I want to access it using client side javascript in browser. Is this possible?
As of now, I am using python to access the db and calling python scripts for db operations.
It's not a good idea to allow clients to access directly to the db. If you have to do it be carefull to not give to the account you use full write/read access to the db or any malicius client can erase modify or steal information from the db.
An implementation with client identification server-side and rest API to return or modify DB it's safer.