JDBC HTTP Server

jopen 10年前

JDBC HTTP Server能够让你通过http api直接操作数据库。这意味着如果有一个数据库名为testdb,其中有一张表,表名为testtable。然后你就可以进行以下操作:

Retrieve (GET), update (PUT) or delete (DELETE) a single row at:  /db/testdb/schemas/public/tables/testtable/rows/1    Retrieve (GET), update (PUT) rows or create a new row (POST) at:  /db/testdb/schemas/public/tables/testtable/rows

上述资源接受select参数, where, limit, offset and orderby 等都支持。比如:

GET a maximum of 10 rows where cost>100 at:  /db/testdb/schemas/public/tables/testtable/rows?where=cost>100&limit=10
在默认情况下,目前唯一的数据格式是JSON。