From: Warren Young Date: October 8 2004 6:00pm Subject: Re: compiling mysql++ examples (fwd) List-Archive: http://lists.mysql.com/plusplus/3557 Message-Id: <4166D5AB.7070806@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Don Thompson wrote: > const CLdata junk(*this); I don't see why that is necessary... > query.insert(&junk); Try query.insert(junk). Or, with my first comment in mind, query.insert(*this).