首页 > 数据库 > mysql教程 > 用C api 连接mysql数据库的 开发实例

用C api 连接mysql数据库的 开发实例

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
发布: 2016-06-07 15:02:34
原创
1495 人浏览过

1. 下载mysql c connector 安装包; 有两种方法: 1 下载tar文件, 将其中的的 lib, include , bin 都放在 /usr/local 相应的目录下; 2. 也可配置链接库的附加目录 : sudo vi /etc/ld.so.conf 文件中加入你的连接器的lib目录; 3. 好像也可以用 sudo apt

1. 下载mysql c connector 安装包; 有两种方法:

                 1 下载tar文件, 将其中的的 lib, include , bin 都放在 /usr/local 相应的目录下;

                 2. 也可配置链接库的附加目录 : sudo vi /etc/ld.so.conf 文件中加入你的连接器的lib目录;

                 3. 好像也可以用 sudo apt-get install libmysqclient-dev

                                        对于c++的好像是 sudo apt-get install libmysql++-dev

 

2.编辑 C 程序利用mysql c api : 我的程序如下:

 

3. 编译 链接,测试:

 

注意链接动态库的选项 : -lmysql

 

4.对mysql c开发几个有用的命令:ldd, mysql_config, file ,nm

ldd: 输出对动态库的依赖,即依赖的动态库的信息;

mysql_conf  :可以获得对mysql的配置开发的信息: mysql_config -- libs

 

看一下,这几个命令的输出情况:

 


下文的链接:http://www.cyberciti.biz/tips/linux-unix-connect-mysql-c-api-program.html

 


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

by Vivek Gite on May 31, 2007 · 56 comments

用C api 连接mysql数据库的 开发实例

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):

<tt><em></em>



</tt>

登录后复制

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:
$ <strong>gcc -o <span>output-file</span> $(mysql_config --cflags)<span>mysql-c-api.c</span> $(mysql_config --libs)</strong>
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

 

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
Laravel api手册有什么作用?
来自于 1970-01-01 08:00:00
0
0
0
laravel 新增Api 命名空间
来自于 1970-01-01 08:00:00
0
0
0
怎么弄那个百度地图的api
来自于 1970-01-01 08:00:00
0
0
0
laravel dingo/api 安装与配置
来自于 1970-01-01 08:00:00
0
0
0
javascript - 关于百度地图API调用问题
来自于 1970-01-01 08:00:00
0
0
0
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板