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 / raja bhar

#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 ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the purpose of the "delete" operator?

819


What can c++ be used for?

804


Define the operators that can be used with a pointer.

787


What can I safely assume about the initial values of variables which are not explicitly initialized?

811


What is a breakpoint?

767


What is the difference between equal to (==) and assignment operator (=)?

774


Define a nested class. Explain how it can be useful.

841


What does override mean in c++?

775


Explain the difference between using macro and inline functions?

804


What are the various access specifiers in c++?

780


What are the advantages of prototyping?

787


How do I make turbo c++ full screen?

788


Explain the advantages of using friend classes.

833


What is oop in c++?

821


What is pointer to array in c++?

809