Requests to commit and roll back transactions
These requests are used to commit or roll back transactions.
Commit transaction
URL: https://localhost:13 13/sql/commit
Response:
[{
"meta": [{
"commit": "completed"
}],
"data": [],
"status": [{
"response code": "200 OK",
"rows returned": "0",
"rows affected": "0",
"autocommit": "true"
}]
}]
Roll back transaction
URL: https://localhost:13 13/sql/rollback
Response:
[{
"meta": [{
"rollback": "completed"
}],
"data": [],
"status": [{
"response code": "200 OK",
"rows returned": "0",
"rows affected": "0",
"autocommit": "true"
}]
}]
Go up to