I'm having a hard time to find a sort of REST-gateway to perform MySQL queries on the destination host directly and send it back as JSON in a managed fashion.
Is there a small library or framework for that ?
Ok, let me explain.
Actually, I'd like to send from a JS client(Standard Ajax) a MySQL query and ideally a JSON schema for the result. With a fixed database layout it not a problem but when you need to cope with lots of different database structures, its better to build on sort a of database abstraction layer which is exposed through a JSON-REST Api on the destination host, implemented with PHP.
Now in Java there are quite a few libraries doing that (http://code.google.com/p/dbmojo/). Also for Node.JS there are some kits.
Update so we did it ! Download the code from www.xapp-studio.com (Joomla plugin). It does all what was needed and explained above.
For PHP I could only found this one : http://code.google.com/p/fxdao/ which is being optimized for ActionScript clients(AS-DAO) bit lacks of many things you would consider in the "simple" package.
Does anyone know something else ?
Thank you!
Update : please ignore all security concerns ! That is not an issue as we deploy the the PHP gateway together with some white/black lists,etc... It includes what a 'public' client can request and what not.
Update 2 :
I've got finally something good running :
- The REST-SERVER is done with : https://github.com/subutux/json-rpc2php
- The MYSQL part can be done self-made as it's quite small
- To verify a MySQL query against a black/whitelist, I can recommend: http://code.google.com/p/php-sql-parser/
- To do the parsing parts, http://www.codeplex.com/PHPLinq helps quite a lot.
The final implementation can be found in a few days here : https://github.com/XApp-Studio.
have fun