mysql-connector-c++ - ‘get_driver_instance’ 不是 ‘sql::mysql’ 的成员
Posted
技术标签:
【中文标题】mysql-connector-c++ - ‘get_driver_instance’ 不是 ‘sql::mysql’ 的成员【英文标题】:mysql-connector-c++ - ‘get_driver_instance’ is not a member of ‘sql::mysql’ 【发布时间】:2010-06-11 17:37:05 【问题描述】:我是 C++ 的初学者,我想我要学习的唯一方法就是弄脏一些代码。我正在尝试构建一个连接到 mysql 数据库的程序。我在 Linux 上使用 g++。没有ide。
我运行“make”,这是我的错误:
hello.cpp:38: error: ‘get_driver_instance’ is not a member of ‘sql::mysql’
make: *** [hello.o] Error 1
这是我的代码,包括 makefile。任何帮助都会很棒!提前致谢
###BEGIN hello.cpp###
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include "mysql_connection.h"
#include <cppconn/driver.h>
#include <cppconn/exception.h>
#include <cppconn/resultset.h>
#include <cppconn/statement.h>
#include <cppconn/prepared_statement.h>
#define EXAMPLE_HOST "localhost"
#define EXAMPLE_USER "root"
#define EXAMPLE_PASS ""
#define EXAMPLE_DB "world"
using namespace std;
using namespace sql::mysql;
int main(int argc, const char **argv)
string url(argc >= 2 ? argv[1] : EXAMPLE_HOST);
const string user(argc >= 3 ? argv[2] : EXAMPLE_USER);
const string pass(argc >= 4 ? argv[3] : EXAMPLE_PASS);
const string database(argc >= 5 ? argv[4] : EXAMPLE_DB);
cout << "Connector/C++ tutorial framework..." << endl;
cout << endl;
try
sql::Driver *driver;
sql::Connection *con;
sql::Statement *stmt;
driver = sql::mysql::get_driver_instance();
con = driver->connect("tcp://127.0.0.1:3306", "user", "password");
stmt = con->createStatement();
stmt->execute("USE " EXAMPLE_DB);
stmt->execute("DROP TABLE IF EXISTS test");
stmt->execute("CREATE TABLE test(id INT, label CHAR(1))");
stmt->execute("INSERT INTO test(id, label) VALUES (1, 'a')");
delete stmt;
delete con;
catch (sql::SQLException &e)
/*
The MySQL Connector/C++ throws three different exceptions:
- sql::MethodNotImplementedException (derived from sql::SQLException)
- sql::InvalidArgumentException (derived from sql::SQLException)
- sql::SQLException (derived from std::runtime_error)
*/
cout << "# ERR: SQLException in " << __FILE__;
cout << "(" << __FUNCTION__ << ") on line " << __LINE__ << endl;
/* Use what() (derived from std::runtime_error) to fetch the error message */
cout << "# ERR: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
return EXIT_FAILURE;
cout << "Done." << endl;
return EXIT_SUCCESS;
###END hello.cpp###
###BEGIN Make File###
SRCS := hello.cpp
OBJS := $(SRCS:.cpp=.o)
CXXFLAGS := -Wall -pedantic
INCPATHS := -I/home/user/mysql-connector/include/
LIBPATHS := -L/home/user/mysql-connector/lib/ -L/home/user/mysql-connector-c/lib/
LIBS := -static -lmysqlclient -mysqlcppconn-static
EXE := MyExecutable
$(EXE): $(OBJS)
$(CXX) $(OBJS) $(LIBPATHS) $(LIBS) -o $@
.cpp.o:
$(CXX) $(CXXFLAGS) $(INCPATHS) -c $< -o $@
###End Makefile###
【问题讨论】:
在您的下一篇文章中,突出显示代码部分,然后点击“010101”。 【参考方案1】:你的问题在这里,get_driver_instance 不是 sql::mysql 的成员,所以要解决这个删除 sql::mysql:: 的问题,它会起作用
改变这一行
driver = sql::mysql::get_driver_instance();
到这里
driver = get_driver_instance();
在这里查看examples
【讨论】:
【参考方案2】:包括:??
#include "mysql_driver.h"
【讨论】:
【参考方案3】:我终于可以在 Ubuntu 12.04 中使用 C++ 连接器成功编译一个程序,我已经使用此命令安装了连接器
'apt-get install libmysqlcppconn-dev'
最初我遇到了同样的问题,“未定义对 `get_driver_instance' 的引用”来解决这个问题,我声明了 MySQL_Driver 类型的驱动程序实例变量。为了便于参考,此类型在 mysql_driver.h 文件中定义。这是我在程序中使用的代码sn-p。
sql::mysql::MySQL_Driver *driver;
try
driver = sql::mysql::get_driver_instance();
我使用 -l mysqlcppconn 链接器选项编译了程序
别忘了包含这个标题
#include "mysql_driver.h"
【讨论】:
这是正确答案。 OP复制粘贴代码(dev.mysql.com/doc/connector-cpp/1.1/en/…)的mysql-connector-c页面没有列出这个头文件。【参考方案4】:看起来该函数在全局命名空间中,不要在前面加上sql::mysql::
【讨论】:
删除了 sql::mysql:: ...no dice.. 谢谢以上是关于mysql-connector-c++ - ‘get_driver_instance’ 不是 ‘sql::mysql’ 的成员的主要内容,如果未能解决你的问题,请参考以下文章