SQLDBC::Connection::releaseStatement

Prototypes

void SQLDBC::Connection::releaseStatement(SQLDBC_Statement *stmt);

void SQLDBC::Connection::releaseStatement(SQLDBC_PreparedStatement *stmt);

Description

Détruit l'objet stmt représentant un ordre Sql rattaché à la connexion courante. Il peut s'agir d'un Sql avec ou sans préparation préalable.

Exemple

#include <SQLDBC.h>

static SQLDBC_Connection *hConnexion;
static SQLDBC_Statement *hOrdreSql;
static SQLDBC_PreparedStatement *hOrdreSql2;

...
hOrdreSql=hConnexion->createStatement();
if (!hOrdreSql) ...
hConnexion->releaseStatement(hOrdreSql);
...
hOrdreSql2=hConnexion->createPreparedStatement();
if (!hOrdreSql2) ...
hConnexion->releaseStatement(hOrdreSql2);
...

Voir aussi

SQLDBC::Connection::createPreparedStatement pour construire un ordre Sql avec une préparation préalable. SQLDBC::Connection::createStatement pour construire un ordre Sql sans préparation préalable.