Trouble using MySql Connector C++
Hey Fellow Coders,
I am trying to get this -->http://blog.ulf-wendel.de/?p=215
to run.
I was able to get my code to compile.
However, it seems that my code crashes every time in 1 spot and I have no idea why.
Here is the code snippet where it crashes.
try {
sql::Driver *driver;
sql::Connection *con;
sql::Statement *stmt;
sql::ResultSet *res;
/* Create a connection */
cout << "success ONE\n";
driver = get_driver_instance();
cout << "success TWO\n";
con = driver->connect("tcp://localhost:3306", "root", "bingo"); <--------//CRASHES RIGHT HERE
cout << "CONNECTED TO DATABASE\n";
I have no idea what I am doing wrong.
Can someone give me some pointers?
Re: Trouble using MySql Connector C++
Btw, I do have an active database running locally... So it shouldn't crash because of an inactive database.
The error message I get is:
Unhandled exception at 0x7855b690 (msvcr90.dll) in cpp_dynamic_client.exe: 0xC0000005: Access violation reading location 0xcccccccc.
Re: Trouble using MySql Connector C++
Nevermind! Got it to run!
I just had to switch the program from running in Debug(active) mode into Release(active).
Thanks anyway!