mysql_library_init

Prototypes

int mysql_library_init(int argc, char **argv, char **groups);

Description

Initialise la bibliothèque du client My Sql en lui transmettant le vecteur d'arguments.

Le résultat est 0 en cas de succès.

Exemple

#include <mysql.h>

...
if (mysql_library_init(-1, NULL, NULL)) ...
if (!mysql_thread_safe()) ...
mysql_library_end();
...

Voir aussi

mysql_library_end pour terminer la bibliothèque du client My Sql. mysql_thread_safe pour savoir si le multi-tâche est supporté.