| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

JDBC HTTP Server

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。

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1410853285305.html
JDBC 数据库驱动程序