In Search of Automatic ORM with REST interface
Posted
by
Dan Ray
on Programmers
See other posts from Programmers
or by Dan Ray
Published on 2012-04-03T13:02:19Z
Indexed on
2012/06/21
3:25 UTC
Read the original article
Hit count: 362
I have this wish that so far Google hasn't been able to fulfill. I want to find a package (ideally in PHP, because I know PHP, but I guess that's not a hard requirement) that you point at a database, it builds an ORM based on what it finds there, and exposes a REST interface over the web.
Everything I've found in my searches requires a bunch of code--like, it wants you to build the classes for it, but it'll handle the REST request routing. Or it does database and relational stuff just fine, but you have to build your own methods for all the CRUD actions.
That's dumb. REST is well defined. If I wanted to re-invent the wheel, I totally could, but I don't want to. Isn't there somebody who's built a one-shot super-simple auto-RESTing web service package?
© Programmers or respective owner