From: Warren Young Date: March 31 2006 3:37pm Subject: Re: Escaping a string List-Archive: http://lists.mysql.com/plusplus/5607 Message-Id: <442D4CA6.7090701@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Samuel Borgman wrote: > > What does manip.cpp:99-114(in 2.0.7) do Not what you think it does. Build and run this: #include #include int main() { mysqlpp::Connection c; mysqlpp::Query q(&c); q << mysqlpp::quote << "quote me, please"; std::cout << q.preview() << std::endl; return 0; } Betcha it doesn't quote the given string. Patches thoughtfully considered.