SQLDBC::Statement::bindColumn

Prototypes

SQLDBC_Retcode SQLDBC::Statement::bindColumn(const SQLDBC_UInt4 Index, const SQLDBC_HostType Type, void *paramAddr, SQLDBC_Length *LengthIndicator, const SQLDBC_Length Size, const SQLDBC_Bool Terminate=SQLDBC_TRUE);

Description

Lie le résultat de la requête de numéro Index à l'ordre Sql courant. La numérotation des résultats commence à 1.

Le type natif du résultat est donné par Type.

La taille maximale d'une valeur d'un résultat est donnée par Size.

La valeur du résultat est récupérée par l'adresse paramAddr et son indicateur ou sa taille par lengthIndicator.

Les valeurs possibles de Type sont les suivantes :

Les valeurs possibles de StrLen_or_IndPtr sont les suivantes :

Le résultat est SQLDBC_OK en cas de succès.

Exemple

#include <SQLDBC.h>

static SQLDBC_Statement *hOrdreSql;
static long E;
static SQLINTEGER IndicateurE;
static long TableE[256];
static SQLINTEGER IndicateurTableE[256];
static char C[20];
static SQLINTEGER IndicateurC;
static char TableC[256][20];
static SQLINTEGER IndicateurTableC[256];

...
/* Resultat unitaire. */
if (hOrdreSql->bindColumn(1, SQLDBC_HOSTTYPE_INT4, (SQLPOINTER)&E, &IndicateurE, sizeof(long))!=SQLDBC_OK) ...
/* Resultat en tableau. */
if (hOrdreSql->bindColumn(2, SQLDBC_HOSTTYPE_INT4, (void *)TableE, TableIndicateurE, sizeof(long)*256)!=SQLDBC_OK) ... /* Resultat unitaire. */
if (hOrdreSql->bindColumn(1, SQLDBC_HOSTTYPE_ASCII, (void *)&C, &IndicateurC, sizeof(char)*20)!=SQLDBC_OK) ...
/* Resultat en tableau. */
if (hOrdreSql->bindColumn(2, SQLDBC_HOSTTYPE_ASCII, (void *)TableC, TableIndicateurC, sizeof(char)*20)!=SQLDBC_OK) ...

Voir aussi

SQLDBC::Statement::bindParameter pour lier un paramètre d'un ordre Sql.