Write a C/C++ program that connects to a MySQL server and
checks if the InnoDB plug-in is installed on it. If so, your
program should print the total number of disk writes by MySQL.
Answer Posted / bhagya
/* Simple C program that connects to MySQL Database server*/
#include <mysql.h>
#include <stdio.h>
main() {
MYSQL *conn;
MYSQL_RES *res;
MYSQL_ROW row;
char *server = "localhost";
char *user = "root";
char *password = "PASSWORD"; /* 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);
}
| Is This Answer Correct ? | 11 Yes | 5 No |
Post New Answer View All Answers
What is copy constructor? Can we make copy constructor private in c++?
Differentiate between an inspector and a mutator ?
What is pointer with example?
Write a struct time where integer m, h, s are its members?
What is #include math h in c++?
What's the "software peter principleā?
What is meant by entry controlled loop? What all C++ loops are exit controlled?
Discuss the possibilities related to the termination of a program before entering the mainq method?
List the types of polymorphism in c++?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
What does n mean in c++?
What is fflush c++?
What is bubble sort c++?
What is meant by the term name mangling in c++?
What is the disadvantage of using a macro?