class SQLDBC::Statement;
#include <SQLDBC.h>
static SQLDBC_Connection *hConnexion;
static SQLDBC_Statement *hOrdreSql;
...
hOrdreSql=hConnexion->createStatement();
if (!hOrdreSql)
...
...
hConnexion->releaseStatement(hOrdreSql);
...