Created
April 18, 2013 03:24
-
-
Save physacco/5409824 to your computer and use it in GitHub Desktop.
Simple C program that connects to MySQL server.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myclient: myclient.o | |
gcc -omyclient -rdynamic -L/usr/lib/mysql -lmysqlclient -lz -lcrypt -lnsl -lm -lssl -lcrypto myclient.o | |
myclient.o: myclient.c | |
gcc -omyclient.o -c myclient.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Simple C program that connects to MySQL server */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <mysql/mysql.h> | |
int main() { | |
MYSQL *conn; | |
MYSQL_RES *res; | |
MYSQL_ROW row; | |
char *server = "localhost"; | |
char *user = "root"; | |
char *password = "password"; | |
char *database = "test"; | |
conn = mysql_init(NULL); | |
/* Connect to database */ | |
if (!mysql_real_connect(conn, server, | |
user, password, database, 0, NULL, 0)) { | |
fprintf(stderr, "%s\n", mysql_error(conn)); | |
exit(1); | |
} | |
/* send SQL query */ | |
if (mysql_query(conn, "show tables")) { | |
fprintf(stderr, "%s\n", mysql_error(conn)); | |
exit(1); | |
} | |
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); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment