Rechercher dans le manuel MySQL

Displaying 351 to 360 of 557 total results
https://dev.mysql.com/mysql-eof.html
In this case, a NULL return from mysql_fetch_row() always means the end of the result set has been reached and it is unnecessary to call mysql_eof(). Because an error may occur on the connection during this process, a NULL return value from ...
https://dev.mysql.com/mysql-error.html
const char *mysql_error(MYSQL *mysql) For the connection specified by mysql, mysql_error() returns a null-terminated string containing the error message for the most recently invoked API function that failed. If a function did not fail, the return ...
https://dev.mysql.com/mysql-fetch-field-direct.html
For metadata-optional connections, this function returns NULL when the resultset_metadata system variable is set to NONE. MYSQL_FIELD *mysql_fetch_field_direct(MYSQL_RES *result, unsigned int fieldnr) Given a field number fieldnr for a column ...
https://dev.mysql.com/mysql-fetch-fields.html
For metadata-optional connections, this function returns NULL when the resultset_metadata system variable is set to NONE. MYSQL_FIELD *mysql_fetch_fields(MYSQL_RES *result) Returns an array of all MYSQL_FIELD structures for a result set. Each ...
https://dev.mysql.com/mysql-field-count.html
The normal use of this function is when mysql_store_result() returned NULL (and thus you have no result set pointer). See Section 28.7.28.1, “Why mysql_store_result() Sometimes Returns NULL After mysql_query() Returns Success”. unsigned int ...
https://dev.mysql.com/mysql-list-dbs.html
wild may contain the wildcard characters % or _, or may be a NULL pointer to match all databases. MYSQL_RES *mysql_list_dbs(MYSQL *mysql, const char *wild) Returns a result set consisting of database names on the server that match the simple ...
https://dev.mysql.com/mysql-list-fields.html
wild may contain the wildcard characters % or _, or may be a NULL pointer to match all fields. MYSQL_RES *mysql_list_fields(MYSQL *mysql, const char *table, const char *wild) Note mysql_list_fields() is deprecated and will be removed in a future ...
https://dev.mysql.com/mysql-list-tables.html
wild may contain the wildcard characters % or _, or may be a NULL pointer to match all tables. MYSQL_RES *mysql_list_tables(MYSQL *mysql, const char *wild) Returns a result set consisting of table names in the current database that match the simple ...
https://dev.mysql.com/mysql-num-fields.html
You would use the connection handler if mysql_store_result() or mysql_use_result() returned NULL (and thus you have no result set pointer). See Section 28.7.28.1, “Why mysql_store_result() Sometimes Returns NULL After mysql_query() Returns ...
https://dev.mysql.com/mysql-options4.html
This example demonstrates the calls that specify connection attributes: MYSQL mysql; mysql_init(&mysql); mysql_options(&mysql,MYSQL_OPT_CONNECT_ATTR_RESET, 0); mysql_options4(&mysql,MYSQL_OPT_CONNECT_ATTR_ADD, "key1", "value1"); ... int ...
Displaying 351 to 360 of 557 total results

Suchen Sie im MySQL-Handbuch

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-fct-null-p-36.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:en Manuel MySQL : https://dev.mysql.com/

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut