|
const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int);
This routine returns a pointer to the name of the n-th parameter in a prepared statement. Host parameters of the form ":AAA" or "@AAA" or "$VVV" have a name which is the string ":AAA" or "@AAA" or "$VVV". In other words, the initial ":" or "$" or "@" is included as part of the name. Parameters of the form "?" or "?NNN" have no name.
The first bound parameter has an index of 1, not 0.
If the value n is out of range or if the n-th parameter is nameless, then NULL is returned. The returned string is always in the UTF-8 encoding even if the named parameter was originally specified as UTF-16 in sqlite3_prepare16() or sqlite3_prepare16_v2().
See also lists of Objects, Constants, and Functions.