Is there a standard for connecting a REST database?

Is there a standard for connecting a REST database, or has anyone heard of any plan plans? A standard similar to JDBC or ODBC for REST?

I do not ask about some people who have built-in JDBC through HTTP REST.

Let me illustrate ... for example.

http: // dataserver:5200/{instance}/{schema} Accept: application/xml Encoding: utf-8 Authorization: blah blah Querystring: select * from hello where id>100 
+4
source share
2 answers

Take a look at the Open Data Protocol: http://www.odata.org/

+4
source

REST is a buzzword. Implementation in the background can be almost any, including hiring an army of slaves to perform operations of the β€œdatabase” and another army of subordinates to print the results. REST is concerned with determining how a remote client can interact with the server, and not how the server does its job of actually satisfying client requests.

-1
source

Source: https://habr.com/ru/post/1379196/


All Articles