致命错误C1083:无法打开包含文件:'boost/variant.hpp':没有这样的文件或目录

问题描述:

我正在开发一个项目,因为在2天内,在过去的2天里,我刚刚搜索为了使这个工作。我对C++相当陌生,而且我们的Class项目要求我们使用C++制作5个游戏,并将它们导出到MySQL数据库以获得高分表。致命错误C1083:无法打开包含文件:'boost/variant.hpp':没有这样的文件或目录

MySQL数据库完全没有问题。我唯一的问题是让C++连接到MySQL数据库。

所以这里有一些更多的信息,有人可以帮助我。

我为此使用Visual Studio 2010和2012。 (就像我在VS 2012中,虽然我的学校有2010年,所以我不知道这是否有任何兼容性差异,但我也有VS2010)。

我一直在寻找5个小时或更多的这类事情的网页,比如为什么我的“的#include”语句也不会工作,我学到了进入项目属性,添加不同的包括库。上网一段时间后通常情况下,我可以找出我哪里错了,但在这里,我只是打了一个死胡同,作为唯一的帮助,我可以说,这包括提升,这是我做了查找,但我完全陷入这一点。我的好友我做跟得不耐烦这类项目,因为这是我们剩下要做的最后一件事。

所以这里是我认为我应该包括的东西。

我包括以下两种情况的测试程序我做的(两者是完全一样的)

"Additional Include Directories" 
C:\Users\Damian\Desktop\boost_1_53_0\boost_1_53_0\boost 
C:\Program Files\MySQL\MySQL Connector C++ 1.1.3\include 
C:\Program Files\MySQL\MySQL Server 5.6\include 

我的链接 - >“附加库目录”

C:\Users\Damian\Desktop\boost_1_53_0\boost_1_53_0\boost 
C:\Program Files\MySQL\MySQL Connector C++ 1.1.3\lib\opt 
C:\Program Files\MySQL\MySQL Server 5.6\lib 

我的两个节目,我的代码试图跑步。

这一个是一个,我在的Visual Studio 2012

#include <iostream> 
#include <cstdio> 
#include <cstdlib> 
using namespace std; 

#include <stdlib.h> 
#include <Windows.h> 
#include <mysql.h> 
#include "mysql_connection.h" 

#include <cppconn/driver.h> 
#define host "localhost" 
#define username "username" 
#define password "password" 
#define database "db_test" 

int main() 
{ 
    MYSQL* conn; 
    conn = mysql_init(NULL); 
    if(conn) 
    { 
     mysql_real_connect(conn, host, username, password, database, 0, NULL, 0); 
    } 
    MYSQL_RES* res_set; 
    MYSQL_ROW row; 
    unsigned int i; 
    mysql_query(conn, "SELECT * FROM tbl_clients WHERE id = 1"); 
    res_set = mysql_store_result(conn); 
    unsigned int numrows = mysql_num_rows(res_set); 
    if(numrows) 
    { 
     row = mysql_fetch_row(res_set); 
     if(row != NULL) 
     { 
      cout << "Client ID : " << row[0] << endl; 
      cout << "Client Name: " << row[1] << endl; 
     } 
    } 
    if(res_set) 
    { 
     mysql_free_result(res_set); 
    } 
    if(conn) 
    { 
     mysql_close(conn); 
    } 

    return 0; 
} 

测试这是我想要编译上的Visual Studio 2010

#include <stdio.h> 
#define W32_LEAN_AND_MEAN 
#include <winsock2.h> 
#include "mysql.h" 
#include "mysql_connection.h" 

#include <cppconn/driver.h> 
#include <iostream> 

// change these to suit your setup 
#define TABLE_OF_INTEREST "highscores" 
#define SERVER_NAME "127.0.0.1" 
#define DB_USER "root" 
#define DB_USERPASS "root" 
#define DB_NAME "test" 

// prototypes 
void showTables(MYSQL*); 
void showContents(MYSQL*,const char*); 

using namespace std; 

int main(int argc, char* argv[]) 
{ 
MYSQL *hnd=NULL; // mysql connection handle 
const char *sinf=NULL; // mysql server information 

hnd = mysql_init(NULL); 
if (NULL == mysql_real_connect(hnd,SERVER_NAME,DB_USER,DB_USERPASS,DB_NAME,0,NULL,0)) 
{ 
fprintf(stderr,"Problem encountered connecting to the %s database on %s.\n",DB_NAME,SERVER_NAME); 
} 
else 
{ 
fprintf(stdout,"Connected to the %s database on %s as user '%s'.\n",DB_NAME,SERVER_NAME,DB_USER); 
sinf = mysql_get_server_info(hnd); 

if (sinf != NULL) 
{ 
fprintf(stdout,"Got server information: '%s'\n",sinf); 
showTables(hnd); 
showContents(hnd,TABLE_OF_INTEREST); 
} 
else 
{ 
fprintf(stderr,"Failed to retrieve the server information string.\n"); 
} 

mysql_close(hnd); 
} 

return 0; 
} 

void showTables(MYSQL *handle) 
{ 
MYSQL_RES *result=NULL; // result of asking the database for a listing of its tables 
MYSQL_ROW row; // one row from the result set 

result = mysql_list_tables(handle,NULL); 
row = mysql_fetch_row(result); 
fprintf(stdout,"Tables found:\n\n"); 
while (row) 
{ 
fprintf(stdout,"\t%s\n",row[0]); 
row = mysql_fetch_row(result); 
} 
mysql_free_result(result); 

fprintf(stdout,"\nEnd of tables\n"); 

return; 
} 

void showContents 
(
MYSQL *handle, 
const char *tbl 
) 
{ 
MYSQL_RES *res=NULL; // result of querying for all rows in table 
MYSQL_ROW row; // one row returned 
char sql[1024], // sql statement used to get all rows 
commastr[2]; // to put commas in the output 
int i,numf=0; // number of fields returned from the query 

sprintf(sql,"select * from %s",tbl); 
fprintf(stdout,"Using sql statement: '%s' to extract all rows from the specified table.\n",sql); 

if (!mysql_query(handle,sql)) 
{ 
res = mysql_use_result(handle); 
if (res) 
{ 
numf = mysql_num_fields(res); 
row = mysql_fetch_row(res); 
fprintf(stdout,"Rows returned:\n\n"); 
while (row) 
{ 
commastr[0]=commastr[1]=(char)NULL; 
for (i=0;i<numf;i++) 
{ 
if (row == NULL) 
{ 
fprintf(stdout,"%sNULL",commastr); 
} 
else 
{ 
fprintf(stdout,"%s%s",commastr,row); 
} 
commastr[0]=','; 
} 
fprintf(stdout,"\n"); 

row = mysql_fetch_row(res); 
} 
fprintf(stdout,"\nEnd of rows\n"); 

mysql_free_result(res); 
} 
else 
{ 
fprintf(stderr,"Failed to use the result acquired!\n"); 
} 
} 
else 
{ 
fprintf(stderr,"Failed to execute query. Ensure table is valid!\n"); 
} 

return; 
} 

代码现在这两个给我此错误

1>c:\program files\mysql\mysql connector c++ 1.1.3\include\cppconn\connection.h(31): fatal error C1083: Cannot open include file: 'boost/variant.hpp': No such file or directory 
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== 

请帮忙!注:我只是试图成功连接到数据库,所以我可以运行不同的查询和whatnot。这些程序只是我从别处复制的测试。

谢谢!

我觉得

"Additional Include Directories" 
C:\Users\Damian\Desktop\boost_1_53_0\boost_1_53_0\boost 

需求是

"Additional Include Directories" 
C:\Users\Damian\Desktop\boost_1_53_0\boost_1_53_0 
+0

哇,感谢快这么快的回复!这解决了这个问题,但现在我得到了我的代码的另一个问题。我将把它编辑成这个问题。或者是更好地使一个新的 – 2013-05-09 03:09:13

+0

没关系,我会离开它这样,由于一吨的帮助!我现在要为我的新问题提出一个新问题; \ – 2013-05-09 03:16:14