It is built on top of the popular database abstraction script “ PDOModel” and supports Mysql, sqlite, pgsql and MSSQL. You can easily perform Insert/Update/Delete/Read operation using RESTp api.
Most of the Mobile and Web Apps require communication with server using some API to send and received data. REST is by far the most commonly used style for designing APIs, especially in the mobile world. These Mobile and web apps often requires to perform crud operation i.e Insert data, read data, update data and delete data using API. To write code for the crud operations for each individual mobile app and web app is quite cumbersome task. That’s where RESTp comes into action.
RESTp is a REST-based solution that simplifies CRUD operations for any mobile or web application. With RESTp, you simply connect it to your database, and it automatically generates all the necessary resources to handle CRUD operations, saving you valuable time and effort.
For every table in database, it provides endpoints to perform CRUD operations. An example of all RESTp API endpoints for a table are below RESTp is build on top of our popular database abstraction script PDOModel. So users will get a free copy of PDOModel also (worth $13).
What is Rest?
REST means “REpresentational State Transfer”. It is an architectural style for developing web services. REST requires that a client request the server in order to retrieve or modify data on the server.
What is PDOModel?
PDOModel – Database abstraction and helper PHP class that helps to do insert, update, delete, select operation using PDO without writing any queries and with much lesser code. It supports Mysql, Postgres,SQlite and SQL Server database.PDOModel provides a complete solution to perform CRUD operations on three different types of database (Mysql, Postgres and Sqlite).
For more details about PDOModel, please click here