C ++ MySQL驱动程序-> Connect vs2017未加载任何符号

时间:2019-03-18 12:09:30

标签: c++ mysql

当我尝试连接到MySQL数据库时,没有错误,但连接未完成。

driver = get_driver_instance();
con = driver->connect("tcp://127.0.0.1:3306","username","password");

driver and con等于:

"0x006b51f8 Information not available, no symbols loaded for mysqlcppconn-7-vs14.dll"

我还更改了密码,并在连接到数据库时引发异常。似乎连接很好,但是此变量无法正确读取数据。

This is image of error

1 个答案:

答案 0 :(得分:0)

“未加载任何符号”仅表示调试器无权访问驱动程序DLL的调试符号。这很正常。

要找出连接失败的原因,您应该将代码包装在异常处理程序中,并处理抛出的所有SQLException。

my_account.html