mysql_stmt_field_count
mysql_stmt_field_count reports how many fields a prepared statement result set contains; it returns zero for INSERT, UPDATE, DELETE, and REPLACE statements.
Last updated
Was this helpful?
mysql_stmt_field_count reports how many fields a prepared statement result set contains; it returns zero for INSERT, UPDATE, DELETE, and REPLACE statements.
unsigned int mysql_stmt_field_count(MYSQL_STMT * stmt);stmt - a statement handle, which was previously allocated by mysql_stmt_init().
Returns the number of fields in a result set of a prepared statement.
Number of fields or zero if the prepared statement has no result set.
The number of fields will be available after calling mysql_stmt_prepare()
mysql_stmt_field_count() returns zero for UPSERT statements which don't produce a result set.
Last updated
Was this helpful?
Was this helpful?

