Reading/Writing data in MS-Access database using javascript
I have a database with one table and I am trying to write data to it using only javascript. I have the connection string set up but do not know how to use javascript to access the DB and read/write to it. any help would be greatly appreciated. Thanks
ACCESSdb JavaScript Library
You can indeed connect to a Microsoft Access database from JavaScript.
I had a situation where this functionality was actually useful, so I wrote a JavaScript library to simplify the process. It allows you to execute full SQL queries in a single command directly from JavaScript - with the option to select the desired format of the result-set with formats including JSON, XML, and HTML.
I had a great deal of difficulty finding information or examples of how to connect to do this, so I decided to share my code with the world...
The library is called ACCESSdb and you can get it here!
:D