Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write a program in C using the MYSQL C API. I have everything working, except recently I have been getting an error when trying to connect to a server. No matter what server I connect to, it continues to give me "mysql server has gone away.". My goal is basically to access an external server and retrieve some data. Here is the code that I have so far:

conn = mysql_init(NULL);

/* Connect to database */
if (!mysql_real_connect(conn, server,
     user, password, database, 0, NULL, 0)) {
    printf("%s",mysql_stat(conn));
    fprintf(stderr, "%s\n", mysql_error(conn));
} else {
    printf("works");
}

/* send SQL query */
if (mysql_query(conn, "show tables")) {
  fprintf(stderr, "%s\n", mysql_error(conn));
}

res = mysql_use_result(conn);

/* output table name */
printf("MySQL Tables in mysql database:\n");
while ((row = mysql_fetch_row(res)) != NULL)
  printf("%s \n", row[0]);

/* close connection */
mysql_free_result(res);
mysql_close(conn);
}
share|improve this question
Have you checked this page:? dev.mysql.com/doc/refman/5.0/en/gone-away.html – ypercube May 12 '11 at 7:16
if (mysql_query(conn, ... or if (! mysql_query(conn, ... ? – ypercube May 12 '11 at 7:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.