SQLDBC::PreparedStatement::clearError

Prototypes

void SQLDBC::PreparedStatement::clearError(void);

Description

Efface la dernière erreur détectée pour l'ordre Sql courant.

Exemple

#include <SQLDBC.h>

static SQLDBC_PreparedStatment *hOrdreSql;

...
SQLDBC::SQLDBC_ErrorHndl hErreur=hOrdreSql->error();
...
hOrdreSql->clearError();
...

Voir aussi

SQLDBC::PreparedStatement::error pour retouver la dernière erreur détectée.