This is a discussion on Does mysql++ 2.1.1 work on you comp.? within the MySQL forums, part of the Database Server Software category; --> Hello! I use Visual C++ 2005 Express Edition and mysql++2.1.1. Everythink works fine when I'm useing object mysqlpp::Connection(...) only. ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello! I use Visual C++ 2005 Express Edition and mysql++2.1.1. Everythink works fine when I'm useing object mysqlpp::Connection(...) only. mysqlpp::Connection baza("information_schema", "localhost","root","pass",0); It even realy connects to MySQL. But when I create mysqlpp::Query objeckt like that: mysqlpp::Query and=baza.query(); The progrogram compiles, links, but when I run the program it crushes when object is deleteing from memory - destructor works. i.e: // -1 { mysqlpp::Query and=baza.query(); |