olivia2007 发表于 2011-07-12 16:02

mysql++-3.1.0 问题求助

请问大家有谁用过

mysql++-3.1.0

我从mysql的官方网上下载了mysql++-3.1.0.tar.gz,

现自己的程序需要连接mysql数据库,所以采用了mysql++-3.1.0中 mysql++-3.1.0\lib目录下的代码作为一个连接数据库的共用代码.并编译为静太库libmysqlib.a用于程序的调用.

但编译的时候出现了错误如下


mysql/lib/libmysqllib.a(connection.o)(.text+0x97): In function `mysqlpp::Connection::thread_start()':
mysql/lib/dbdriver.h:668: undefined reference to `mysql_thread_init'
/mysql/lib/libmysqllib.a(connection.o)(.text+0x2f3): In function `mysqlpp::Connection::server_status() const':
mysql/lib/dbdriver.h:597: undefined reference to `mysql_stat'
mysql/lib/libmysqllib.a(connection.o)(.text+0x363): In function `mysqlpp::Connection::server_version() const':
mysql/lib/dbdriver.h:521: undefined reference to `mysql_get_server_info'
/mysql/lib/libmysqllib.a(connection.o)(.text+0x44b): In function `mysqlpp::Connection::kill(unsigned long) const':
mysql/lib/dbdriver.h:395: undefined reference to `mysql_kill'
mysql/lib/libmysqllib.a(connection.o)(.text+0x4a3): In function `mysqlpp::Connection::ipc_info() const':
mysql/lib/dbdriver.h:366: undefined reference to `mysql_get_host_info'

........


请问这是什么原因呀.在生成静太库libmysqllib.a时,包含了dbdriver.h在里面呀. 怎么会出现那么多的没有定义的参数呀?

poilkj0 发表于 2012-04-23 14:13

页: [1]
查看完整版本: mysql++-3.1.0 问题求助