mariadb_dyncol_unpack - mariadb-corporation/mariadb-connector-c GitHub Wiki
Name
mariadb_dyncol_unpack - extracts keys and values of all columns
Synopsis
#include <mariadb_dyncol.h>
enum enum_dyncol_func_result
mariadb_dyncol_unpack(DYNAMIC_COLUMN *str,
uint *column_count,
MYSQL_LEX_STRING **column_keys,
DYNAMIC_COLUMN_VALUE **values);
Description
The mariadb_dyncol_unpack() function extracts all keys and values of a dynamic column.
Parameter
str- Pointer to aDYNAMIC_COLUMNstructurecolumn count- Pointer to an unsigned integer which will receive the number of columnscolumn_keys- Pointer of an array ofMYSQL_LEX_STRINGstructures, which will contain the column keysvalues- Pointer of an array ofDYNAMIC_COLUMN_VALUEstructures, which will contain the values.
Return value
Returns ER_DYNCOL_OK on success, otherwise an error.
Notes
- The
column_keysandvaluesarrays will be allocated bymariadb_dyncol_unpack()and must be freed by application.