Rechercher dans le manuel MySQL

Displaying 151 to 160 of 196 total results
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-get-client-info.html
const char *mysql_get_client_info(void) Returns a string that represents the MySQL client library version (for example, "8.0.20"). The function value is the version of MySQL that provides the client library. For more information, see Section ...
https://dev.mysql.com/mysql-get-host-info.html
const char *mysql_get_host_info(MYSQL *mysql) Returns a string describing the type of connection in use, including the server host name. A character string representing the server host name and the connection type.
https://dev.mysql.com/mysql-get-option.html
int mysql_get_option(MYSQL *mysql, enum mysql_option option, const void *arg) Returns the current value of an option settable using mysql_options(). The option argument is the option for which you want its value. The arg argument is a pointer to a ...
https://dev.mysql.com/mysql-get-server-info.html
const char *mysql_get_server_info(MYSQL *mysql) Returns a string that represents the MySQL server version (for example, "8.0.20").
https://dev.mysql.com/mysql-get-ssl-cipher.html
const char *mysql_get_ssl_cipher(MYSQL *mysql) mysql_get_ssl_cipher() returns the encryption cipher used for the given connection to the server. A string naming the encryption cipher used for the connection, or NULL if the connection is not ...
https://dev.mysql.com/mysql-info.html
const char *mysql_info(MYSQL *mysql) Retrieves a string providing information about the most recently executed statement, but only for the statements listed here. A character string representing additional information about the most recently ...The ...
https://dev.mysql.com/mysql-list-dbs.html
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 regular expression specified by the wild parameter. wild may contain the wildcard characters % or _, or ...Calling mysql_list_dbs() is similar to executing the query SHOW DATABASES [LIKE ...
https://dev.mysql.com/mysql-list-tables.html
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 regular expression specified by the wild parameter. wild may contain the wildcard characters % ...Calling mysql_list_tables() is similar to executing the query SHOW TABLES [LIKE ...
https://dev.mysql.com/mysql-load-plugin-v.html
struct st_mysql_client_plugin *mysql_load_plugin_v(MYSQL *mysql, const char *name, int type, int argc, va_list args) This function is equivalent to mysql_load_plugin(), but it accepts a va_list instead of a variable list of parameters.
Displaying 151 to 160 of 196 total results

Rechercher dans le manuel MySQL

Traduction non disponible

Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-fct-char-p-16.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :en Manuel MySQL : https://dev.mysql.com/

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut