GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
mysql_stmt_attr_get(3) MariaDB Connector/C mysql_stmt_attr_get(3)

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:

Value Type Description
STMT_ATTR_UPDATE_MAX_LENGTH my_bool * Indicates if mysql_stmt_store_result(3) will update the max_length value of MYSQL_FIELD structures.
STMT_ATTR_CURSOR_TYPE unsigned long * Possible values are CURSOR_TYPE_READ_ONLY or default value CURSOR_TYPE_NO_CURSOR.
STMT_ATTR_PREFETCH_ROWS unsigned long * Number of rows which will be prefetched. The default value is 1.
STMT_ATTR_PREBIND_PARAMS unsigned int * Number of parameters used for mariadb_stmt_execute_direct(3)
STMT_ATTR_STATE enum mysql_stmt_state * Status of prepared statement. Possible values are defined in enum mysql_stmt_state. This option was added in MariaDB Connector/C 3.1.0

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

mysql_stmt_attr_set(3)
Version 3.2.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.