MYSQL *mysql_init(MYSQL *mysql);
Le résultat est non NULL en cas de succès.
#include <mysql.h> static MYSQL *hConnexion; ... hConnexion=mysql_init(); if (!hConnexion) { ... } ... mysql_close(hConnexion); ...