SQLExecute

This function executes a prepared statement, using current values of parameter markers.

In C, this statement is coded:

id=500;
strcpy(szName, "TEST");
rc = SQLExecute(hstmt);  // Insert a record with id = 500, name = "TEST"
id=600;
strcpy(szName, "ABCD");
rc = SQLExecute(hstmt);  // Insert a record with id = 600, name = "ABCD"