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

Why null pointer is used?

583


What does return 0 do in c++?

580


What is the use of object in c++?

570


Is c++ map a hash table?

567


What are smart pointers?

672






What are the types of pointer?

554


Can non-public members of another instance of the class be retrieved by the method of the same class?

610


How many different levels of pointers are there?

657


Why is c++ a mid-level programming language?

594


Which is best c++ or java?

613


Differentiate between an inspector and a mutator ?

707


what is C++ objects?

673


What is std :: endl?

596


What is the basic concept of c++?

578


What is pointer -to-members in C++? Give their syntax?

597