You've already forked mariadb-connector-c
mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-08-08 14:02:17 +03:00
26 lines
818 B
Groff
26 lines
818 B
Groff
.\" Automatically generated by Pandoc 3.5
|
|
.\"
|
|
.TH "mariadb_dyncol_column_cmp_named" "3" "" "Version 3.3" "MariaDB Connector/C"
|
|
.SS Name
|
|
mariadb_dyncol_column_cmp_named \- Compare two column names
|
|
.SS Synopsis
|
|
.IP
|
|
.EX
|
|
#include \f[B]<mariadb_dyncol.h>\f[R]
|
|
|
|
int mariadb_dyncol_column_cmp_named(const MYSQL_LEX_STRING *s1,
|
|
const MYSQL_LEX_STRING *s2);
|
|
.EE
|
|
.SS Description
|
|
Compares two dynamic column keys represented as a pointer to a
|
|
\f[CR]MYSQL_LEX_STRING\f[R] structure.
|
|
.SS Parameter
|
|
.IP \[bu] 2
|
|
\f[CR]s1\f[R] \- First key
|
|
.IP \[bu] 2
|
|
\f[CR]s2\f[R] \- Second key
|
|
.SS Return value
|
|
Returns an integer less than, equal to, or greater than zero if the
|
|
first bytes of \f[CR]s1\f[R] is found, respectively, to be less than, to
|
|
match, or be greater than the first bytes of \f[CR]s2\f[R].
|