我在使用C ++运行使用MySQL连接器的编译程序时遇到了一些问题。它编译得很好,但是当它运行时,它会立即崩溃 - 看起来就像是连接线。我已经设置了所有其他库,依赖项,预处理器和链接器输入,我正在使用Release解决方案配置。我正在运行Microsoft Visual Studio 2012。
我得到的错误如下: MyLittleSQL.exe中0x6E69AF48(msvcr90.dll)的未处理异常:0xC0000005:访问冲突读取位置0x00000024。
调用堆栈:
MyLittleSQL.exe!main() Line 24 C++
MyLittleSQL.exe!__tmainCRTStartup() Line 536 C
第24行是:
con = driver->connect("tcp://127.0.0.1:3306", "sepples_su", "easy");
完整的源代码是:
#include <stdlib.h>
#include <iostream>
#include "mysql_connection.h"
#include "mysql_driver.h"
#include <cppconn/driver.h>
#include <cppconn/exception.h>
#include <cppconn/resultset.h>
#include <cppconn/statement.h>
using namespace std;
int main(void)
{
try
{
sql::Driver *driver;
sql::Connection *con;
sql::Statement *stmt;
sql::ResultSet *res;
/* Create a connection */
driver = get_driver_instance();
con = driver->connect("tcp://127.0.0.1:3306", "sepples_su", "easy");
/* Connect to the MySQL test database */
con->setSchema("test");
stmt = con->createStatement();
res = stmt->executeQuery("SELECT 'Hello World!' AS _message");
while (res->next())
{
cout << "\t... MySQL replies: ";
/* Access column data by alias or column name */
cout << res->getString("_message") << endl;
cout << "\t... MySQL says it again: ";
/* Access column fata by numeric offset, 1 is the first column */
cout << res->getString(1) << endl;
}
delete res;
delete stmt;
delete con;
}
catch (sql::SQLException &e)
{
cout << "# ERR: SQLException in " << __FILE__;
cout << "(" << __FUNCTION__ << ") on line " << __LINE__ << endl;
cout << "# ERR: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
cout << endl;
return EXIT_SUCCESS;
}
这实际上是从Connector文档中获取的一个示例,但我想确保它不是我自己的错误。
任何帮助都将不胜感激,谢谢。
答案 0 :(得分:3)
在@LyubomirVasilev的帮助下,我自己使用Visual Studio 11(2012)的设置编译了C ++ Connector。用这里编译的替换其他lib和dll文件,它完全适用于。
可以在此处找到有关其他任何内容的信息:http://dev.mysql.com/doc/refman/5.1/en/connector-cpp-info.html
答案 1 :(得分:2)
使用VC9运行时库(Visual Studio 2008)编译最新的C ++ MySQL连接器。 Visual Studio 2012使用VC11库,因此您的程序崩溃的原因显而易见。您的程序必须使用与MySQL C ++连接器相同的运行时库:
0x6E69AF48处于未处理的异常(msvcr90.dll)&lt; --- VC9
您必须使用Visual Studio 2008编译程序,Visual Studio 2008使用VC9库或使用Visual Studio 2012从源代码编译MySQL C ++连接器。