I am getting this error when trying to run a simple SQL C++ program (IDE used VS 2008)
fatal error C1083: Cannot open include file: 'mysql.h': No such file or directory
this is how my code looks like;
#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <mysql.h>
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
I think that my IDE is unable to find the path of the MYSQL Installation or some thing similar. What should i do to resolve this situation. Step by step instructions appreciated.