Name

sqlite3_bind_parameter_count() — Get the number of statement parameters

Definition

int sqlite3_bind_parameter_count( sqlite3_stmt* stmt );
stmt

A prepared statement that contains parameter values.

Returns

The number of valid parameters in this statement.

Description

This function returns the largest valid statement parameter index in the given statement. If this function returns 6, valid parameter indexes include 1 through 6, inclusive.

See Also

sqlite3_bind_xxx()