mysql_read_query_result(3) MariaDB Connector/C mysql_read_query_result(3) Name mysql_read_query_result - waits for a server result or response package Synopsis #include my_bool mysql_read_query_result(MYSQL * mysql); Description Waits for a server result set or response package from a previously executed mysql_send_query(3). Parameters o mysql - a mysql handle, which was previously allocated by mysql_init(3) and connected by mysql_real_connect(3). Return value Zero on success, non zero on error. Example For an example how to use 'mysql_send_query()` in an event driven model, please check Jan Kneschke's Blog entry "Async MySQL Queries with C-API" (https://jan.kneschke.de/projects/mysql/async-mysql-queries- with-c-api/). See also o mysql_real_query(3) o mysql_send_query(3) Version 3.3.1 mysql_read_query_result(3)