SQLDBC_Retcode SQLDBC::Connection::rollback(void);
Le résultat est SQLDBC_OK en cas de succès.
#include <SQLDBC.h>
static SQLDBC_Connection *hConnexion;
...
if (hConnexion->rollback()!=SQBDBC_OK)
{
...
}
...
if (hConnexion->commit()!=SQBDBC_OK)
{
...
}
...