views:

529

answers:

2

Is there anything out there that given a MySQL database can create RESTful webservice endpoints? I'm ok with it doing stupid basic things to start with, as long as the data model is tunable after.

For bonus points it could understand foreign keys to join data, and create searching endpoints for indexed columns.

A: 

There is DBSlayer, which provides a "JSON over HTTP" interface to MySQL. It doesn't have a REST interface, though.

trendels
+1  A: 

PHP REST SQL might be a starting point.

Paul Morgan