edmiCommitAllTransactions

EdmiError edmiCommitAllTransactions(void);


Commit (and close) all open transactions>. All changes to the EDMdatabase performed in the actual open transactions will be made persistent in the EDMdatabase.

Arguments


<argument>

Return Value


Error rendering macro 'excerpt-include' : User 'null' does not have permission to view the page 'US:_r_EDMInterface'.

 

Options


  

 

Example


 

EdmiError rstat;
 . . .
 /* Open transaction #1 */
 if (rstat = edmiStartTransaction()) goto errorInTransaction;
 . . .
 /* Open transaction #2 */
 if (rstat = edmiStartTransaction()) goto errorInTransaction;
 . . .
 /* Commit (make persistent) all changes done in transaction #1
 and transaction #2 */ 
 if (rstat = edmiCommitAllTransactions())goto errorInTransaction;
 /* All transactions are committed and closed */
 . . .

 

See also

Filter by label

There are no items with the selected labels at this time.

Â