An ultra cheap, SQL powered, Firestore alternative
Explore it via UI: Hobostore Explorer
- GET /exec/ will execute the SQL query that was passed as path parameter and return the result
- PUT /exec will execute the SQL query that was passed as
text/plain
body and return the result - POST /exec takes an
application/json
object withsql
andparams
properties, executes the SQL query with the given params and returns the result - GET /info returns information on the DB
- GET /dump dumps all the Tables
curl -X PUT --data "SELECT * FROM Authors" -H "Content-Type: text/plain" https://%myHobostoreUrl%/exec
{
"result": [
{
"firstname": "Heinz",
"lastname": "Erhardt"
}
]
}