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


Please Help Members By Posting Answers For Below Questions

Define vptr.

594


You want to link a c++ program to c functions. How would you do it?

537


Can we make copy constructor private in c++?

593


What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal

693


Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort

658






What do you mean by inheritance in c++? Explain its types.

610


Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.

3368


State the difference between pre and post increment/decrement operations.

604


What are libraries in c++?

603


What are the various operations performed on stack?

627


Why is c++ so fast?

529


What is nested class in c++?

516


Is it legal in c++ to overload operator++ so that it decrements a value in your class?

609


What are activex and ole?

540


What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?

670