mysql_stmt_attr_get - Gets the current value of a statement attribute

Name  Synopsis  Description  Parameter  Attribute types  Notes  See Also 

Name

mysql_stmt_attr_get − Gets the current value of a statement attribute

Synopsis

#include <mysql.h>


my_bool mysql_stmt_attr_get(MYSQL_STMT * stmt,
                            enum enum_stmt_attr_type,
                            void * attr);

Description

Gets the current value of a statement attribute. Returns zero on success, non zero on failure.

Parameter

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.

Attribute types

The enum_stmt_attr_type parameter has the following possible values:

Notes

Setting the number of prefetched rows will work only for read only cursors.

See Also

mysql_stmt_attr_set(3)


Updated 2024-01-29 - jenkler.se | uex.se