What would be the easiest way to expose a MySQL database using a REST interface?
The only guidelines that I can find on the Internet is just using NetBeans. I am not a big fan of NetBeans...
I'd like to retrieve that and be able to update data on the database using this REST interface.
FYI, this is for an iPhone application that I am currently working on.
MySQL 5.7.4 and above work with the HTTP plugin, which offers a HTTP REST API.
However, it currently comes with a NOT FIT FOR PRODUCTION warning.
Blog announcement.
Docs.
In 2019, you may use PHP-CRUD-API. It is a single file PHP script that adds a REST API to a MySQL 5.6 InnoDB database. PostgreSQL 9.1 and MS SQL Server 2012 are also fully supported.
Disclaimer: I wrote it.
You may want to have a look at jongo. It's a REST API for JDBC.