SQLDBC::Connection::rollback

Prototypes

SQLDBC_Retcode SQLDBC::Connection::rollback(void);

Description

Invalide la transaction associée à la connexion courante.

Le résultat est SQLDBC_OK en cas de succès.

Exemple

#include <SQLDBC.h>

static SQLDBC_Connection *hConnexion;

...
if (hConnexion->rollback()!=SQBDBC_OK)
...
if (hConnexion->commit()!=SQBDBC_OK)
...

Voir aussi

SQLDBC::Connection::commit pour valider la transaction.