SQLDBC_Retcode SQLDBC::Connection::connect(const char *servernode, const char *serverdb, const char *username, const char *password, const SQLDBC_StringEncoding userpwdEncoding);
Le résultat est SQLDBC_OK en cas de succès.
#include <SQLDBC.h>
static SQLDBC_Environment *hEnvironnement;
static SQLDBC_Connection *hConnexion;
...
if (hConnexion->connect("aix", "maxdb_aix", "scott", "tiger")!=SQLDBC)
{
...
}
...
if (hEnvironnement->releaseConnection(hConnexion)!=SQLDBC)
{
...
}
...