Я следовал этому уроку http://blog.ulf -wendel.de /? P = 215 # привет . Я пробовал как на Visual C ++ 2008, так и на Visual C ++ 2010. И статический, и динамический компилятор выдает мне точно такие же сообщения об ошибках:
error LNK2001: unresolved external symbol _get_driver_instance
Кто-нибудь сталкивался с этой проблемой раньше?
Обновление:
+ Дополнительные зависимости: mysqlcppconn.lib
+ Дополнительные каталоги включения: C: \ Program Files \ MySQL \ MySQL Connector C ++ 1.0.5 \ include
+ Дополнительные каталоги библиотек: C: \ Program Files \ MySQL \ MySQL, Connector C ++ 1.0.5 \ lib \ opt
Еще одно обновление:
Нажмите F12 в get_driver_instance (), связанном с:
class CPPCONN_PUBLIC_FUNC Driver
{
protected:
virtual ~Driver() {}
public:
// Attempts to make a database connection to the given URL.
virtual Connection * connect(const std::string& hostName, const std::string& userName, const std::string& password) = 0;
virtual Connection * connect(std::map< std::string, ConnectPropertyVal > & options) = 0;
virtual int getMajorVersion() = 0;
virtual int getMinorVersion() = 0;
virtual int getPatchVersion() = 0;
virtual const std::string & getName() = 0;
};
} /* namespace sql */
extern "C"
{
CPPCONN_PUBLIC_FUNC sql::Driver *get_driver_instance();
}
Видимо, функция существовала, но компоновщик не смог ее найти.
Фрагмент кода:
#include <iostream>
#include <sstream>
#include <memory>
#include <string>
#include <stdexcept>
using namespace std;
#include "mysql_connection.h"
#include "mysql_driver.h"
#include <cppconn/driver.h>
#include <cppconn/exception.h>
#include <cppconn/resultset.h>
#include <cppconn/statement.h>
int main() {
try {
sql::Driver *driver;
sql::Connection *conn;
sql::Statement *stmt;
sql::ResultSet *res;
driver = get_driver_instance();
conn = driver->connect( "http://localhost/chandb", "root", "chan" );
stmt = conn->createStatement();
res = stmt->executeQuery( "select * from another" );
while( res->next() ) {
cout << "id = " << res->getInt( "Id" );
cout << "id = " << res->getInt( "GoldValue" );
cout << "id = " << res->getString( "Model" );
}
delete conn;
delete stmt;
delete res;
std::cout << "This is it";
}
catch( sql::SQLException e ) {
cout << e.what();
}
}
Спасибо
Чан