7a5573f
/* simple test program to see if we can link the embedded server library */
7a5573f
7a5573f
#include <stdio.h>
7a5573f
#include <stdlib.h>
7a5573f
#include <stdarg.h>
7a5573f
7a5573f
#include "mysql.h"
7a5573f
7a5573f
MYSQL *mysql;
7a5573f
7a5573f
static char *server_options[] = \
7a5573f
       { "mysql_test", "--defaults-file=my.cnf", NULL };
7a5573f
int num_elements = (sizeof(server_options) / sizeof(char *)) - 1;
7a5573f
7a5573f
static char *server_groups[] = { "libmysqld_server", 
7a5573f
                                 "libmysqld_client", NULL };
7a5573f
7a5573f
int main(int argc, char **argv)
7a5573f
{
7a5573f
   mysql_library_init(num_elements, server_options, server_groups);
7a5573f
   mysql = mysql_init(NULL);
7a5573f
   mysql_close(mysql);
7a5573f
   mysql_library_end();
7a5573f
7a5573f
   return 0;
7a5573f
}