So, from Saturday I'm trying to configure MySQL Connector C ++ on VS2012. I will leave without comment that I had to download 1xx mb Boost libs only to run a simple request from my lol program. However, this does not work.
The problem is that even with the proper configuration (following the MySQL Connector Manual from the official website), it simply cannot work, because the last package I downloaded does not contain the files listed in the manual. Manual states :
Add the lib / opt directory to the Additional Libraries text box. This allows you to find the libmysql.lib library file.
But libmysql.lib and / or libmysql.dll does not exist.
While building, I get an obvious error: error LNK1181: cannot open input file 'libmysql.lib'
How can I configure this to work correctly?
edit: Perhaps someone has configured VS2012 to work with MySQL Connector C ++ recently? Should I install MySQL Connector C before? (I tried, it doesnโt work). I need to install MySQL Server on my comp before (I still want to connect to an external server).
c ++ mysql visual-studio-2012
kukis
source share