mirror of
https://github.com/Wessel/mariadb-example.git
synced 2026-06-06 07:25:41 +02:00
46 lines
942 B
C
46 lines
942 B
C
#include <mysql/mysql.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void main() {
|
|
// test();
|
|
|
|
MYSQL *conn;
|
|
MYSQL_RES *res;
|
|
MYSQL_ROW row;
|
|
|
|
char *server = "localhost";
|
|
char *user = "pipo";
|
|
char *password = "theclown"; /* 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);
|
|
}
|