From: Warren Young Date: June 26 2006 7:06pm Subject: Re: Segmention fault with several connections List-Archive: http://lists.mysql.com/plusplus/5783 Message-Id: <44A03025.2090209@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Drew M. wrote: > It would appear that the issue isn't so much multiple mysqlpp::Connections > coexisting, but an issue with the assignment operator. Yes. The problem is that it doesn't exist. :) With no defined assignment operator, you just get a bitwise copy, which is not the right thing with Connection. You don't want a clone of the existing connection down to the bit level, you want a new connection with the same parameters. I've added such semantics to Connection. This will appear in the next release of MySQL++. Tomas, I hope you can find the time to play with the version of MySQL++ in the Subversion repository, to see if this works for you, before it gets into a release version.