-
Notifications
You must be signed in to change notification settings - Fork 258
mariadb_dyncol_list_num
Georg Richter edited this page Sep 2, 2018
·
2 revisions
mariadb_dyncol_list_num - Lists numeric column keys in dynamic column
#include <mariadb_dyncol.h>
enum enum_dyncol_func_result
mariadb_dyncol_list_named(DYNAMIC_COLUMN *str,
uint *column_count,
uint **column_numbers);
Lists the column numbers inside a dynamic column.
-
*str
- Dynamic column -
*column_count
- A pointer to an unsigned integer which stores the number of columns -
**column_numbers
- A pointer to an array of column numbers, which stores the numbers
Returns ER_DYNCOL_OK
on success, otherwise error.
- The application program needs to free the allocated memory for
column_count
andcolumn_numbers
parameter.
MariaDB Connector/C Reference