欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

visual studio-MySQL 连接不到libmysqllib

程序员文章站 2022-06-16 11:08:55
...
visual studiomysql数据
 #define _CRT_SECURE_NO_WARNINGS#include   #include   #include   #include   #include    #include  #pragma comment(lib,"libmysql64.lib")//连接MysQL需要的库  #pragma comment(lib,"libmysql.lib")//连接MysQL需要的库  using namespace std;int main(){    const char user[] = "VISUAL_STUDIO1";         //username      const char pswd[] = "ligh123456789";    //password      const char host[] = "118.192.151.230";    //or"127.0.0.1"      const char table[] = "testdb";       //database      unsigned int port = 3306;           //server port              MYSQL myCont;    MYSQL_RES *result;    MYSQL_ROW sql_row;    MYSQL_FIELD *fd;    char column[32][32];    int res;    mysql_init(&myCont);    if (mysql_real_connect(&myCont, host, user, pswd, table, port, NULL, 0))    {        cout name);                }                j = mysql_num_fields(result);                for (i = 0; i

为什么运行结果会有这个::::::

错误 1 error LNK1104: 无法打开文件“libmysql64.lib” d:\用户目录\我的文档\Visual Studio 2013\Projects\MySQL\MySQL\LINK