使用-mysqllib和mysql库找不到-libmysql或undefinder引用

时间:2016-03-04 11:13:28

标签: c++ mysql codeblocks libmysql

使用-libmysql

找不到-mysqllib或取消订阅者引用

您好我使用代码块与数据库定期连接有问题。 If Include -libmysql -Cannot findif -mysqllib - undefinder reference。我还添加了一个文件夹lib并包含在他们的位置,请帮忙。

#include <iostream>
#include <windows.h>
#include "mysql.h"

using namespace std;

int main()
{
  MYSQL mysql;
  mysql_init(&mysql);
  if( mysql_real_connect(&mysql,//example//))
    cout<<"good job";
  else cout<<"bad job";
  return 0;
}

enter image description here

1 个答案:

答案 0 :(得分:0)

很可能您提供的库位置不正确。请检查文件夹是否确实包含库。