SQLDBC::Connection::createStatement

Prototypes

SQLDBC_Statement *SQLDBC::Connection::createStatement(void);

Description

Construit l'objet représentant un ordre Sql rattaché à la connexion courante. L'ordre Sql est exécuté directement sans préparation préalable.

Exemple

#include <SQLDBC.h>

static SQLDBC_Connection *hConnexion;
static SQLDBC_Statement *hOrdreSql;

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

Voir aussi

SQLDBC::Connection::createPreparedStatement pour construire un ordre Sql avec une préparation préalable. SQLDBC::Connection::releaseStatement pour détruire un ordre Sql.