mysql_real_connect_nonblocking()returns anenum net_async_statusstatus indicator. mysql_real_connect_nonblocking()was added in MySQL 8.0.16. Return Values Returns anenum net_async_statusvalue. See the description inSection 7.2, “C API Asynchronous Interface Data Structures”. ANET_ASYNC_ERRORreturn...
mysql_real_connect_nonblocking()returns anenum net_async_statusstatus indicator. mysql_real_connect_nonblocking()was added in MySQL 8.0.16. Return Values Returns anenum net_async_statusvalue. See the description inSection 7.2, “C API Asynchronous Interface Data Structures”. ANET_ASYNC_ERRORreturn...
(1); } - mysql_con1_status = (mysql_real_connect_nonblocking( - mysql_con1, opt_host, opt_user, opt_password, current_db, opt_port, - opt_unix_socket, CLIENT_MULTI_STATEMENTS)); + do { + if (mysql_con1_status == NET_ASYNC_NOT_READY) { + mysql_con1_status = (mysql_real...
By removing the loop completely, it means that we need to call mysql_real_connect_nonblocking more times and our implementation blocks on data from the socket before calling the next time. This means that once all the data is read from the socket we will not call back in again even if ...
mysql_real_connect_nonblocking()returns anenum net_async_statusstatus indicator. mysql_real_connect_nonblocking()was added in MySQL 8.0.16. Return Values Returns anenum net_async_statusvalue. See the description inSection 7.2, “C API Asynchronous Interface Data Structures”. ANET_ASYNC_ERRORreturn...
mysql_real_connect_nonblocking()returns anenum net_async_statusstatus indicator. mysql_real_connect_nonblocking()was added in MySQL 8.0.16. Return Values Returns anenum net_async_statusvalue. See the description inSection 7.2, “C API Asynchronous Interface Data Structures”. ANET_ASYNC_ERRORreturn...
mysql_real_connect_nonblocking()returns anenum net_async_statusstatus indicator. mysql_real_connect_nonblocking()was added in MySQL 8.0.16. Return Values Returns anenum net_async_statusvalue. See the description inSection 7.2, “C API Asynchronous Interface Data Structures”. ANET_ASYNC_ERRORreturn...
For details about the latter, see Section 5.4.58, “mysql_real_connect()”. The two functions differ as follows: mysql_real_connect() returns a connection handler or NULL. mysql_real_connect_nonblocking() returns an enum net_async_status status indicator. mysql_real_connect_nonblocking()...