Files
mariadb-connector-c/man/mariadb_dyncol_create_many_named.3
Georg Richter 10c67ee835 Man page fixes:
- Install created man pages when building with WITH_DOCS=ON
- Set version to 3.4
2024-10-25 10:37:47 +02:00

46 lines
1.4 KiB
Groff

.\" Automatically generated by Pandoc 3.5
.\"
.TH "mariadb_dyncol_create_many_named" "3" "" "Version 3.4" "MariaDB Connector/C"
.SS Name
mariadb_dyncol_create_many_named \- Creates a dynamic column with named
keys
.SS Synopsis
.IP
.EX
#include \f[B]<mariadb_dyncol.h>\f[R]
\f[B]enum\f[R] enum_dyncol_func_result
mariadb_dyncol_create_many_named(DYNAMIC_COLUMN *str,
uint column_count,
MYSQL_LEX_STRING *column_keys,
DYNAMIC_COLUMN_VALUE *values,
my_bool new_string);
.EE
.SS Description
Create a dynamic column from arrays of values and names.
.SS Parameter
.IP \[bu] 2
\f[CR]*str\f[R] \- A pointer to a dynamic column structure
.IP \[bu] 2
\f[CR]column_count\f[R] \- number of columns
.IP \[bu] 2
\f[CR]*column_keys\f[R] \- an array of column keys
.IP \[bu] 2
\f[CR]*values\f[R] \- an array of values
.IP \[bu] 2
\f[CR]new_string\f[R] \- if set \f[CR]str\f[R] will be reinitialized
(not freed) before usage
.SS Return value
Returns \f[CR]ER_DYNCOL_OK\f[R] on success, otherwise error.
.SS Notes
.IP \[bu] 2
To delete, update or insert new columns into an existing dynamic column
use mariadb_dyncol_update_many_named function
.SS See also
.IP \[bu] 2
mariadb_dyncol_create_many_num
.IP \[bu] 2
mariadb_dyncol_update_many_named
.IP \[bu] 2
Dynamic Column Error Codes