Howto: Connect MySQL server using C program API under Linux or UNIX

by Vivek Gite on May 31, 2007 · 76 comments

From my mailbag:

How do I write a C program to connect MySQL database server?

MySQL database does support C program API just like PHP or perl.

The C API code is distributed with MySQL. It is included in the mysqlclient library and allows C programs to access a database.

Many of the clients in the MySQL source distribution are written in C. If you are looking for examples that demonstrate how to use the C API, take a look at these clients. You can find these in the clients directory in the MySQL source distribution.

Requirements

Make sure you have development environment installed such as gcc, mysql development package etc. Following is the list summarize the list of packages to compile program:

  • mysql: MySQL client programs and shared library
  • mysqlclient: Backlevel MySQL shared libraries (old libs)
  • mysql-devel: Files for development of MySQL applications (a must have)
  • mysql-server: Mysql server itself
  • gcc, make and other development libs: GNU C compiler

Sample C Program

Following instructions should work on any Linux distro or UNIX computer. Here is the small program that connects to mysql server and list tables from mysql database.(download link):

/* 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);
}

How do I compile and link program against MySQL libs?

MySQL comes with a special script called mysql_config. It provides you with useful information for compiling your MySQL client and connecting it to MySQL database server. You need to use following two options.
Pass --libs option - Libraries and options required to link with the MySQL client library.

$ mysql_config --libs
Output:

-L/usr/lib64/mysql -lmysqlclient -lz -lcrypt -lnsl -lm -L/usr/lib64 -lssl -lcrypto

Pass --cflags option - Compiler flags to find include files and critical compiler flags and defines used when compiling the libmysqlclient library.
$ mysql_config --cflags
Output:

-I/usr/include/mysql -g -pipe -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing

You need to pass above option to GNU C compiler i.e. gcc. So to compile above program, enter:
$ gcc -o output-file $(mysql_config --cflags) mysql-c-api.c $(mysql_config --libs)
Now execute program:
$ ./output-file
Output:

MySQL Tables in mysql database:
columns_priv
db
func
help_category
help_keyword
help_relation
help_topic
host
tables_priv
time_zone
time_zone_leap_second
time_zone_name
time_zone_transition
time_zone_transition_type
user 

References:

  • MySQL C API - A must read - official MySQL C API documentation

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

We're here to help you make the most of sysadmin work. So, subscribe!

{ 76 comments… read them below or add one }

1 Jonathan Arnold June 1, 2007

One thing to be aware of though with the mysql library – there is licensing involved. It was complicated enough that our company backed off from MySQL and went with SQLite.

Reply

2 secret March 27, 2011

Thank you for the code, but I have a question
I have used this code and copy it to the PCW program to connect to mysql but it gives me this error.. a #Device required before this line….it is in string.h
Please anyone can help me
Thank you ^.^

Reply

3 vivek June 1, 2007

Jonathan,

You have raised an excellent point.

MySQL dual Licensing policy is bit dangerous; if you are giving out GPL code it can be done with GPL; otherwise it force commercial vendor under its own terms and condition.

PGSQL or SQLite seems to good alternative.

Appreciate your post!

Reply

4 dinesh June 23, 2010

i am not being able to install Microsoft SQL Server JDBC Driver 2.0 in my laptop..can u give my some tips for that???

Reply

5 david June 4, 2007

I’m no C guru, but I think there’s a typo. shouldn’t you run:

./output-file

or compile with:

-o output.file

Or, am I missing something?

Reply

6 vivek June 4, 2007

David,

Thanks for the heads up!

Reply

7 debakanta sandha July 12, 2007

i want to connect mysql from c program in linux mandriva 2007.i am not being able to do it as mysql.h is not there in mandriva 2007

Reply

8 vivek July 12, 2007

Just install mysql-devel package

Reply

9 John Matthews August 6, 2007

How do you specify the socket file?

Reply

10 vivek August 6, 2007

Use mysql_real_connect() and set host to NULL socket to NULL or 0

mysql_real_connect(&mysql, 0, username, password, dbname, 0, 0, 0 ); 

See API doc for more help!

Reply

11 Edwind October 19, 2007

how i do a makefile that compile me the .c?

it has to find the result of mysql_config –libs and –cflags and put it in the gcc -o line

thx in advance

Reply

12 Walther November 12, 2007

Hi Edwind,

I’m not big on c-fu, but you should “vi Makefile” in the directory where you have your .c program and in the Makefile, you should type something along the lines of:

MYSQLCFLAGS=`mysql_config –cflags`
MYSQLLIBS=`mysql_config –libs`
datafoxclient:
$(CC) -I/usr/include/mysql -o datafoxclient $(MYSQLCFLAGS) datafoxclient.c $(MYSQLLIBS)
clean:
rm -f datafoxclient

some of the c-fu gurus would probably tell you that my Makefile is broken and not that good! But, hey, it works for me :)

hope that helps :)

Reply

13 anil November 30, 2007

i want c code for FTP server and client.

Reply

14 bedjo December 6, 2007

any scaffolding for C available ? so i don’t have to
code add/edit/delete bla bla bla etc ?

thx

Reply

15 siva February 8, 2008

./output-file output not created while compile mysql-c-api.c in gcc as specified in procedure
plz anyone help me

Reply

16 semarsuper February 23, 2008

Combining your script there with memcached C API (http://danga.com/memcached/apis.bml) will also boost the performance, instead of directly querying to mysqld.

Rgds,

semarsuper

Reply

17 Saiful Islam March 28, 2008

i m facing a error message when wanna run output file-
“error while loading shared libraries: libmysqlclient.so.15: cannot open shared object file: No such file or directory”

would anyone help me to over come this prob.

thanks
Saiful

Reply

18 Skatox April 6, 2008

Excelent Bro! thanks for the info. It helped me a lot.

Reply

19 shiva April 11, 2008

i hav followed same procedure which is given above for executing n i m getting an error message when wanna run output file-
“Access denied for user ‘root’@'localhost’ (using password: YES)” Can anyone tell me how to fix this prob. Pleeeeeeeeeeeeease

Reply

20 tomato April 13, 2008

shiva, if you have problems of this level, you shouldn’t be programming.

Reply

21 champ May 4, 2008

I encountered with problems about it, but when I see your site and apply what you said, I could finally succeed it.

Thanks a lot..

Reply

22 zackaria September 5, 2008

a have 2 table or more, how to make connect n operation in c.

Reply

23 kishore October 15, 2008

hi,thanks for the code which you gave but i am getting some errors.i tried running the code on ubuntu8.04,when i execute the 1st statement –\”$ mysql_config –libs\” i get the output as -Wl,-Bsymbolic-functions -L/usr/lib/mysql -lmysqlclient
and when i execut the 2nd statement i get the output as -I/usr/include/mysql -DBIG_JOINS=1 -fPIC

i am not able to get the output as mentioned in the post.Can anyone please help me??
Also can anyone tell me what is the output file in the 3rd statement.

thankyou :)

Reply

24 sher December 14, 2008

“Access denied for user ‘root’@’localhost’ (using password: YES)”
and when i change the password to NULL i get this
“Access denied for user ‘root’@’localhost’ (using password: NO)”
not able to find out what is the real problem
i also tried using “sudo ./output-file” but it did not work

Reply

25 Johan Hedberg January 19, 2009

shiva/sher:
Those errors are because you haven’t specified the correct password for the mysql server. If you don’t remember the password go here:
http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html

Reply

26 Edg March 3, 2009

Thank you for a great tutorial, I did it with the server of my website, but I had to give permission to my IP to access the server.

Reply

27 Vineesh poduval May 1, 2009

i am using TC …from where i will get the the mysql.h file for turbo c(windows)

Reply

28 Vivek Gite May 1, 2009

I don’t think so TC supports mysql API. Get better compiler set or move to GNU/Linux.

Reply

29 John_L May 8, 2009

Hey great tutorial, but I’m having problems inserting double values & when I try to retrieve the values using the C application, all I see is the primary key column. Here is my insert code:
if (mysql_query(conn, “INSERT INTO Meta_Data (alpha, beta, delta, gamma) VALUES (1.01, 2.34, 3.9, 4.3)”)) {
This will put the values into DB OK, but if I try to insert variables, all that gets inserted is 0, for example
if (mysql_query(conn, “INSERT INTO Meta_Data (alpha, beta, delta, gamma) VALUES (alpha, beta, delta, gamma)”)) {
alpha, beta, delta, gamma are declared as doubles & I’ve also tried making them constants but same results. I’m not very strong with C so any advice would be great.

Would anyone have any advice to get around this?
Thanks
John

Reply

30 cca May 15, 2009

john_l the c compiler will see your variables as strings, not as variables.
have a look at the sprintf function to append variables to strings.

man sprintf

Reply

31 John Brock May 19, 2009

If you see an error regarding ‘exit’ implicit function, remember to add an include of stdlib.h or process.h. Otherwise, good starting program for MySQL programming.

Reply

32 Bhanu June 11, 2009

Hi walter ,

I Wrote makefile as u suggested for one of the member ,i have problem while doing make,it cannot find

gcc: mysql_config -cflags: No such file or directory
gcc: mysql_config -libs: No such file or directory

where i should find it ,

PLZ help me out
Thank u
Bhanu

Reply

33 Henrique Leitão June 30, 2009

Hi, I have mysql4 and mysql5 running in my linux. I set the path lib and the path include in compilation to paths mysql5. The program compile, but occurs a erro when program is execute.
(dlopen(): /usr/lib/imspector/mysqlloggingplugin.so: undefined symbol: compress). Please help me
Below, is the line compilation to program.
g++ mysqlloggingplugin.o libimspector.so -ldl -fPIC -shared -Wl,-soname,mysqlloggingplugin.so -o mysqlloggingplugin.so -L/opt/ef/mysql5/lib/mysql -I/opt/ef/mysql5/include -lmysqlclient -lm -lnsl

Reply

34 grufo August 4, 2009

to compile the litte script with gcc = 4.3 i had to inlcude “#include ” and had to change those four lines from:

char *server = “localhost”;
char *user = “root”;
char *password = “password”; /* set me first */
char *database = “mysql”;

to:

const char *server = “localhost”;
const char *user = “root”;
const char *password = “password”; /* set me first */
const char *database = “mysql”;

and the compile command needed this additional flag: “-lstdc++”

gcc -lstdc++ -o mysql_test $(mysql_config –cflags) mysql_test.cpp $(mysql_config –libs)

otherwise i got the following errors:
mysql_test.cpp: In function ‘int main()’:
mysql_test.cpp:10: warning: deprecated conversion from string constant to ‘char*’
mysql_test.cpp:11: warning: deprecated conversion from string constant to ‘char*’
mysql_test.cpp:12: warning: deprecated conversion from string constant to ‘char*’
mysql_test.cpp:13: warning: deprecated conversion from string constant to ‘char*’
mysql_test.cpp:21: error: ‘exit’ was not declared in this scope
mysql_test.cpp:27: error: ‘exit’ was not declared in this scope
/tmp/ccwZLvOo.o:(.data.DW.ref.__gxx_personality_v0[DW.ref.__gxx_personality_v0]+0×0): undefined reference to `__gxx_personality_v0′

Reply

35 Hemant September 22, 2009

Hello,
I have tried the above c code.
But while compiling i get an error message saying:

mysql_c.c:1:19: error: mysql.h: No such file or directory
mysql_c.c: In function ‘main’:
mysql_c.c:5: error: ‘MYSQL’ undeclared (first use in this function)
mysql_c.c:5: error: (Each undeclared identifier is reported only once
mysql_c.c:5: error: for each function it appears in.)
mysql_c.c:5: error: ‘conn’ undeclared (first use in this function)
mysql_c.c:6: error: ‘MYSQL_RES’ undeclared (first use in this function)
mysql_c.c:6: error: ‘res’ undeclared (first use in this function)
mysql_c.c:7: error: ‘MYSQL_ROW’ undeclared (first use in this function)
mysql_c.c:7: error: expected ‘;’ before ‘row’
mysql_c.c:20: warning: incompatible implicit declaration of built-in function ‘exit’
mysql_c.c:26: warning: incompatible implicit declaration of built-in function ‘exit’
mysql_c.c:33: error: ‘row’ undeclared (first use in this function)

Which certainly means that i dont have mysql.h file.
I am using Fedora 11.

Can anyone solve this problem for me. Please.

Thanks in Advance.
-Hemant

Reply

36 aardvark October 11, 2009

This works in ubuntu 9.04


sudo apt-get install mysql-server mysql-client
mysql -uroot -p
sudo apt-get install libmysqlclient16-dev
gcc -o mysql-c-api-test `mysql_config --cflags` mysql-c-api-test.c `mysql_config --libs`
./mysql-c-api-test

Reply

37 SK October 18, 2009

Hey I have problem similar to John_L. I want to push variable declared in C into the database.
CODE EXPLANATION:
I have declared some variables
//declared variables
unsigned char a,b,c,d;

and want to push these variables in MYSQL database using MYSQL C API. I used sprintf and pushed all variables in a string variable.

//declared the string.
char buffer[50];

//used sprintf function to format variables into string.
sprintf(buffer,”%02X:%02X:%02X:%02X”,a,b,c,d);

now pushed “buffer” into database using mysql c api

// Insert into MySQL
if (mysql_query(conn, “INSERT INTO events (srcAddress) VALUES (‘buffer’)”))
{
fprintf(stderr, “%s\n”, mysql_error(conn));
exit(1);
}

But instead of writing values of the variable buffer, “buffer” is as it is getting written in the database.

Can anyone plz help me to get through this problem.

Reply

38 Korting October 19, 2009

Thanks for the code and the updates here above :-)

Reply

39 sunny October 21, 2009

Please help me fix this problem. I try to run the above exmple but I get the error like this
./mysql-c-api-test
Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (2)

Reply

40 Gandhi November 24, 2009

I’m getting this.
/tmp/ccCldxTF.o: In function `main’:
mysql-c-api.c:(.text+0×31): undefined reference to `mysql_init’
mysql-c-api.c:(.text+0×79): undefined reference to `mysql_real_connect’
mysql-c-api.c:(.text+0×89): undefined reference to `mysql_error’
mysql-c-api.c:(.text+0xc4): undefined reference to `mysql_query’
mysql-c-api.c:(.text+0xd4): undefined reference to `mysql_error’
mysql-c-api.c:(.text+0×107): undefined reference to `mysql_use_result’
mysql-c-api.c:(.text+0×133): undefined reference to `mysql_fetch_row’
mysql-c-api.c:(.text+0x14a): undefined reference to `mysql_free_result’
mysql-c-api.c:(.text+0×156): undefined reference to `mysql_close’
collect2: ld returned 1 exit status
Please help me

Reply

41 Adrian September 2, 2010

Hello Ghandi!

I have the same exact problem you wrote about. I am running Ubuntu 9.10 and Mysql 5.1.

Did you ever solve it? Regards,
Adrián

Reply

42 gandhi November 24, 2009

My question is
“Create a C/C++ console application which connects to MySQL database and inserts a new column of type varchar into a given table. Application should ask the user for table and new column name.”
Please let me know what are the modifications/changes that I have to make for the code given here so that I the get desired result.

Reply

43 Alok January 5, 2010

For Centos and other rpm based packages
mysql-devel packages is must
yum install mysql-devel

Reply

44 Garrett Griffin January 11, 2010

Huge thanks for this. Exactly what I needed. Other than difficulty finding the MySQL-Devel package for SUSE 11, it was a breeze to get started with C and MySQL.

Reply

45 Jose Tapia February 26, 2010

Thanks a lot for the explanation, was very useful for my Asterisk programming test. Best regards

Reply

46 gaurav May 23, 2010

great i love this

Reply

47 randy melder May 24, 2010

perfect tutorial. thanks a million!

Reply

48 ahkbar June 23, 2010

very usefull tuto, for f13 i can’t compile with #include , when i search in my system with command locate: “locate mysql.h” this show /usr/include/mysql/mysql.h
so mysql.h don’t is in include directory, is in mysql, so you need to add mysql directory in header file.

thanks this work.

Reply

49 maxi August 4, 2010

I need the code for the following task any one can help me, I need a solution fast

Write a C/C++ console application that connects to a MySQL server (with InnoDB plugin enabled) and prints information about the last detected deadlock (if any) by the InnoDB Storage Engine.

Reply

50 deepak August 10, 2010

hi,
can u pls help me out to write a program in C++ to connect to MySQL server and also to display the number of hosts connected to it?

Reply

51 DILIP September 28, 2010

A C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.

Reply

52 dinesh kumar A.s November 12, 2010

Write a C/C++ program that connects to a MySQL server and lists all hosts connected to it at that point in time.. can any one find solution coding for this program please.

Reply

53 Muksin December 13, 2010

when i compiling, i get this message
warning: incompatible implicit declaration of built-in function ‘exit’

after running
Segmentation fault

please help me.

Reply

54 Ahmad Hussain December 19, 2010

Dear I am new in linux Mandriva , my main object is to covert my vb.net and Microsoft sql server base project to Linux plate form , I was battling to find out the clue to connect using c with Mysql and your code work for me lot to get clue. Thx lot you are star.
Rgds
Ahmad

Reply

55 supraja March 14, 2011

Thanks for ginving this code, it is working fine.

Reply

56 Karan March 28, 2011

Thanks, it indeed was of help.

Reply

57 Niroshan April 4, 2011

I have Lampp installed. When I run mysql_config –libs I was asked to install ‘libmysqlclient15-dev’. When I run mysql_config command with libs and cflags after installing libmysqlclient15-dev it didn’t give me the exact output as you have specified but -L/usr/lib/mysql -lmysqlclient and -I/usr/include/mysql was there respectively.
Program compilation was done successfully with few warnings but when I run it, gave me following error.
Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’ (2)
what might be the problem?

Reply

58 Niroshan April 4, 2011

ok creating a symlink to /opt/lampp/mysql/mysql.sock from /var/run/mysqld/mysqld.sock solved the problem.
Thank you for the article, it was really helpful.

Reply

59 vijaybhaskar April 23, 2011

when i run above program in my test machine. i am getting below errors. Could you please tel me how to rectify this.
OS: Gnu/Linux
Version: 2.6.18-194.el5
64Bit.

Reply

60 vijaybhaskar April 23, 2011

sorry i forgot to add error message:
gcc -o output-file $(mysql_config –cflags) test_mysql.c $(mysql_config –libs)
/usr/bin/ld: skipping incompatible /usr/lib/libmysqlclient.so when searching for -lmysqlclient
/usr/bin/ld: cannot find -lmysqlclient
collect2: ld returned 1 exit status

Reply

61 Kevin May 30, 2011

Hi it works well for me.
But when i put it in my makefile.basic , it’s shows me undefined error to mysql.
here is mine, pls correct me. I has been on internet for a week but still can’t manage to solve it.

CC=/usr/bin/gcc
#CC=powerpc-linux-gcc
CP=/usr/bin/cp
CFLAGS=-g -Wall -L/usr/lib/mysql -lmysqlclient

www=/var/www
htdocs=/htdocs
cgi_bin=/cgi-bin
config=/etc/apache2/sites-available/default

INSTALL_DIR=$(pwd)/.install

Reply

62 Etay July 21, 2011

Might be good to add another include file #include to handle the exit(1) func properly without warnings from the compiler.

There is alway a security risk to hard code values from within your code. If you run from the shell $ strings output-file you would be able to see the user credentials along with other data. If you reverse engineer an executable, that would be pretty much step-1. A good exercise to modify the code to enter data from stdin. gets(something) or fgets(something sizeof(something), stdin)… string.h

Reply

63 Etay July 21, 2011

From my previous post, the include file is stdlib.h…

Reply

64 Hrehan July 30, 2011

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.

Can anyone help me with this program,i have tried it but its showing lots of error msgs..

Reply

65 Anusha Rao July 31, 2011

Hello frd plz give me this program code
” 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.”

Reply

66 prathap August 1, 2011

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. i need this question answer as soon as possible please any one tel me….

Reply

67 prathap August 2, 2011

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 please answer this question please

Reply

68 sunkanna August 17, 2011

i want source code for dis question
please send me

question is
Write a C/C++ program to add a user to MySQL. The user should be permitted to only “INSERT” into the given database..??

Reply

69 cripton August 19, 2011

#include in order to compile with newer compilers

Reply

70 cripton August 19, 2011

#include “stdlib.h”

Reply

71 cripton August 19, 2011

sorry for the spam.. I wanted to post:

#include “stdlib.h” in order to compile with newer compilers

Reply

72 Adolfo Hernandez October 16, 2011

pleased

I’m compiling as follows:

gcc -o jesus $(/usr/local/src/inser_m_c/mysql/bin/mysql_config –cflags) jesus.c $(/usr/local/src/inser_m_c/mysql/bin/mysql_config –libs)

It has an error

jesus.c: In function âmainâ:
jesus.c:25: warning: passing argument 1 of âprintfâ from incompatible pointer type
jesus.c:31: warning: passing argument 1 of âprintfâ from incompatible pointer type
/usr/bin/ld: cannot find -lmysql
collect2: ld returned 1 exit status

Thanks for your help

Adolfo

Reply

73 Rick October 20, 2011

I’ve compiled fine under QNX with

cc -o test $(mysql_config –cflags) test.c $(mysql_config –libs)

be sure your dev libraries are installed, Jesus your code shows some weird characters ->> âprintfâ

Best Regards

Reply

74 shalini November 3, 2011

which is the best development tools used to connect mysql server.

Reply

75 rehman November 13, 2011

please explain allthese code and mysqlmethods

Reply

76 sabari November 17, 2011

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 please answer this question please…pls send the coding to my mail pls… sabarinathan67@gmail.com… its very urgent…

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 4 + 3 ?
Please leave these two fields as-is:
Are you a human being? Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: