|
Project Information
Links
|
RestDB is a framework, means you can expose any database with a RESTful service. The main concept of RestDB is CoC (Convention over Configuration), With the framework, you can access your database with a RESTful URI, For example, you have a MySQL database, and the database name is Blog, it contains a table named Users, and you suppose to access the data in the users with the following URI: http://localhost/blog/users And if in a browser, it should return a page to you, and it's just like the Scaffolding you ever seen in other frameworks like RoR(Ruby on Rails) You can also work with RestDB in a programmatic way. Read more in our wiki Page. All in all, with RestDB, you can expose your database as a simple web service. |