@sap/xsodata
Version:
Expose data from a HANA database as OData V2 service with help of .xsodata files.
22 lines (19 loc) • 445 B
JavaScript
;
exports.runState = {
createTables: 0, //this is a extra run because of the fact that a crate table statement triggers a db autocommit
execution: 1,
preCommitRun: 2,
commitRun: 3,
postCommitRun: 4,
executed: 5,
executedWithError: 6,
};
exports.runStateText = [
'createTables',
'execution',
'preCommitRun',
'commitRun',
'postCommitRun',
'executed ',
'executedWithError ',
];