SQLRETURN SQLExecute(SQLHSTMT StatementHandle);
Le résultat est SQL_SUCCESS en cas de succès.
#include <windows.h>
#include <sql.h>
#include <sqlext.h>
#include <sqltypes.h>
static SQLHANDLE hOrdreSql;
static SQLINTEGER NbEnregistrements;
...
if (SQLPrepare(hOrdreSql, "select * from emp;", SQL_NTS)!=SQL_SUCCESS)
{
...
}
...
if (SQLExecute(hOrdreSql)!=SQL_SUCCESS)
{
...
}
...
if (SQLRowCount(hOrdreSql, &NbEnregistrements)!=SQL_SUCCESS)
{
...
}
...