#include <my_global.h>
#include <mysql.h>

int main(int argc, char **argv)
{
printf("MySQL client version: %s\n", mysql_get_client_info());
}

I got the error when i try to compile the above code.

First you have to have mysql server installed on your computer. Then you have to link that program with the mysql.lib that is in the mysql server install directory.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.