Rechercher dans le manuel MySQL
28. 7. 15. 6 mysql _store _result _nonblocking ()
enum net_async_status
mysql_store_result_nonblocking(MYSQL *mysql, MYSQL_RES **result
)
Description
mysql_store_result_nonblocking()
is an asynchronous function. It is the counterpart of the
mysql_store_result()
synchronous function, for use by applications that require
asynchronous communication with the server. For general
information about writing asynchronous C API applications,
see Section 28.7.12, “C API Asynchronous Interface”.
mysql_store_result_nonblocking()
is used similarly to
mysql_store_result()
. For
details about the latter, see
Section 28.7.7.79, “mysql_store_result()”. The two functions differ
as follows:
mysql_store_result()
returns a pointer to aMYSQL_RESULT
value that contains the result set, orNULL
if there is no result set or an error occurred.mysql_store_result_nonblocking()
returns anenum net_async_status
status indicator and takes a secondresult
argument that is the address of a pointer to aMYSQL_RESULT
into which to store the result set. When the return status isNET_ASYNC_COMPLETE
, theresult
argument isNULL
if there is no result set or an error occurred.
mysql_store_result_nonblocking()
was added in MySQL 8.0.16.
Returns an enum net_async_status
value. See
the description in
Section 28.7.13, “C API Asynchronous Interface Data Structures”. A
NET_ASYNC_ERROR
return status indicates an
error.
When the return status is
NET_ASYNC_COMPLETE
, the
result
argument is NULL
if there is no result set or an error occurred. To determine
whether an error occurred, check whether
mysql_error()
returns a
nonempty string, mysql_errno()
returns nonzero, or
mysql_field_count()
returns
zero.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-mysql-store-result-nonblocking.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.