show/hide this revision's text 2 added 560 characters in body

I would not make this pointer:

mysqlpp::Connection* conn;

Just make it a normal member of the class.

mysqlpp::Connection conn;

This has several advantages.
But the most important to you is that you will avoid the shallow copy problem.
<Finding quote>

Rule of 4:

If an object is the owner of a RAW pointer then you need to define the following 4 members to make sure you handle the memory management correctly:

* Constructor
* Copy Constructor
* Assignment Operator
* Destructor

This is because if you do not define them the compiler will automatically generate the above methods for you. In most situations these work, but if your object contains a RAW pointer that you own (ie you delete it) then things will go horibly wrong witht he compiler generated version of these methods.

show/hide this revision's text 1

I would not make this pointer:

mysqlpp::Connection* conn;

Just make it a normal member of the class.

mysqlpp::Connection conn;

This has several advantages.
But the most important to you is that you will avoid the shallow copy problem.
<Finding quote>