SQLDBC_Retcode SQLDBC::PreparedStatement::setBatchSize(SQLDBC_UInt4 rowarraysize);
Le résultat est SQLDBC_OK en cas de succès.
#include <SQLDBC.h>
#include <SQLDBC.h>
static SQLDBC_PreparedStatement *hOrdreSql;
static long E;
static SQLDBC_Length IndicateurE;
static long TableE[256];
static SQLDBC_Length IndicateurTableE[256];
static char C[20];
static SQLDBC_Length IndicateurC;
static char TableC[256][20];
static SQLDBC_Length IndicateurTableC[256];
...
if (hOrdreSql->bindParameter(2, SQLDBC_HOSTTYPE_INT4, (void *)TableE, 0, IndicateurTableE, sizeof(long))!=SQLDBC_OK)
{
...
}
...
if (hOrdreSql->bindParameter(2, SQLDBC_HOSTTYPE_ASCII, (void *)TableC, 0, IndicateurTableC, sizeof(char)*20)!=SQLDBC_OK)
{
...
}
...
if (hOrdreSql->setBatchSize(256)!=SQLDBC_OK)
{
...
}
...