Author: mysqlpp
Date: Sat Jul 16 06:42:06 2005
New Revision: 930
URL: http://svn.gna.org/viewcvs/mysqlpp?rev=930&view=rev
Log:
- Made Connection::set_option() type-safe: it will enforce the type of
its argument, according to the requirements of the underlying C API.
(This is helpful because the C API makes you cast the argument to
const char* regardless of the argument's actual type; barf.)
- You can now call set_option() before the connection is established,
which will simply queue the option up for later.
- Using new queueing feature to set the proper connection flags for
multi-query processing on connection startup. multiquery example
should now work with stored procedures.
Modified:
trunk/ChangeLog
trunk/doc/userman/userman.xml
trunk/examples/multiquery.cpp
trunk/lib/connection.cpp
trunk/lib/connection.h