SQLDBC::Connection

Prototypes

class SQLDBC::Connection;

Description

Classe représentant une connection pour l'environnement du client Max Db.

Exemple

#include <SQLDBC.h>

static SQLDBC_IRuntime *hRuntime;
static SQLDBC_Connection *hConnexion;

...
SQLDBC::SQLDBC_Environment hEnvironnement=SQLDBC::SQLDBC_Environment::SQLDBC_Environment(hRuntime);
...
hConnexion=hEnvironnement->createConnection();
if (!hConnexion) ...
hEnvironnement->releaseConnection(hConnexion);
...

Voir aussi

SQLDBC::Environment pour la classe modélisant l'environnement.