Author: wyoung
Date: Fri Mar 31 17:57:48 2006
New Revision: 1277

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1277&view=rev
Log:
Fixed bug where Query ctor was initting the "throw exceptions" flag
incorrectly.  Patch by Joel Fielder <[EMAIL PROTECTED]>

Modified:
    trunk/lib/query.cpp

Modified: trunk/lib/query.cpp
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/query.cpp?rev=1277&r1=1276&r2=1277&view=diff
==============================================================================
--- trunk/lib/query.cpp (original)
+++ trunk/lib/query.cpp Fri Mar 31 17:57:48 2006
@@ -32,7 +32,7 @@
 
 Query::Query(const Query& q) :
 std::ostream(0),       
-OptionalExceptions(q.exceptions()),
+OptionalExceptions(q.throw_exceptions()),
 Lockable(q.locked()),
 def(q.def),
 conn_(q.conn_),


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to