For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

Syntax

unsigned int mysql_stmt_field_count(MYSQL_STMT * stmt);

Parameter

Description

Returns the number of fields in a result set of a prepared statement.

Return Value

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.

See Also

spinner

Last updated

Was this helpful?