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 a node class in c++?

733


What is diamond problem in c++?

633


What is a storage class used in c++?

713


What is the function to call to turn an ascii string into a long?

696


What is the best c++ book?

802






Differentiate between an inspector and a mutator ?

790


How do you show the declaration of a virtual constructor?

612


What are the advantages of c++ over c?

695


What is the type of 'this' pointer?

700


Is c++ harder than java?

675


What does scope resolution operator do?

702


What are the two types of comments?

663


Is it possible to provide default values while overloading a binary operator?

871


why is c++ called oops? Explain

668


What is std :: endl?

684