Microdatabase Server is out!

Microdatabase Server is a very innovative approach to database. Traditional servers like Mysql, PostgreSQL have to use another application server and a scripting language to create a consumable API. But Microdatabase server is database that creates API to the database on the fly. There is no need for an additional server to create APIs.

The above picture tells us the same thing, so the key features of the Microdatabase Server are:-

  • Create ready to use APIs which can be consumed by Web or Mobile Applications directly
  • No Need for an additional Application server like Apache, there by eliminating processing times of these servers
  • No Need to use a scripting language like Java, Python as the APIs are giving the data directly in the response from database
  • Specially for Mobile app developers this database will reduce the processing times to use API tremendously

 

Below are the list of APIs that can be used on the database server

http://localhost:8090/change/newpassword
http://localhost:8090/create/customer/fname,string,100,lname,string,100,age,integer,3,price,float,8,date,datetime,19
http://localhost:8090/show/all/tables
http://localhost:8090/show/customer
http://localhost:8090/drop/customer
http://localhost:8090/insert/customer/”Michael”,”Josh”,”31″,”100.14″,”12:12:2000 11:34:56″
http://localhost:8090/view/customer/count
http://localhost:8090/view/customer/limit/1,100
http://localhost:8090/view/customer/limit/1,100/where/fname=Michael
http://localhost:8090/update/customer/where/fname=Michael/set/fname=Mickael
http://localhost:8090/delete/customer/where/fname=Michael

Please leave your comments, Thanks

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.