Created
October 21, 2020 15:21
-
-
Save Jzarecta/22b06ed0abe90750890fa6e6f44044fb to your computer and use it in GitHub Desktop.
You need to install the libmysqlclient-dev package on Linux
This file contains 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
#include <mysql.h> | |
#include <stdio.h> | |
main() { | |
MYSQL *conn; | |
MYSQL_RES *res; | |
MYSQL_ROW row; | |
char *server = "localhost"; | |
char *user = "root"; | |
char *password = "root"; /* set me first */ | |
char *database = "mysql"; | |
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); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment