mysql_stmt_attr_get − Gets the current value of a statement attribute
#include <mysql.h>
my_bool
mysql_stmt_attr_get(MYSQL_STMT * stmt,
enum enum_stmt_attr_type,
void * attr);
Gets the current value of a statement attribute. Returns zero on success, non zero on failure.
|
• |
stmt − a statement handle, which was previously allocated by mysql_stmt_init(3). | ||
|
• |
enum_stmt_attr_type − attribute. See below. | ||
|
• |
attr − pointer to a variable, which will contain the attribute value. |
The enum_stmt_attr_type parameter has the following possible values:
|
• |
Setting the number of prefetched rows will work only for read only cursors. |
|
• |
mysql_stmt_attr_set(3) |