Hi Guys,
I am working on converting a console application into a user friendly GUI. The actual application is written in visual C++ and person has no information none what so ever on how to run it. So to understand the technique I am trying to experiment with the application.
The application is a Web Crawler and communicates with the web and fetches the data and stores the info in the database using SQL SERVER 2008.
I have created the database in SQL and without interfearing with the connection string in the algorithm, it is giving me the following error on execution:
ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
I am not sure if it is to do with DNS settings as I am not sure on how to set that up?
Here is the code the author has used for the connection string:
string helper::getDbConnString()
{
return "uid=test;pwd=test;dsn=dnsname";
}
Please advice!
Thanks