Author: wyoung
Date: Wed Mar 19 15:19:49 2008
New Revision: 2254

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2254&view=rev
Log:
Small fix

Modified:
    trunk/examples/cpool.cpp

Modified: trunk/examples/cpool.cpp
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/examples/cpool.cpp?rev=2254&r1=2253&r2=2254&view=diff
==============================================================================
--- trunk/examples/cpool.cpp (original)
+++ trunk/examples/cpool.cpp Wed Mar 19 15:19:49 2008
@@ -109,7 +109,7 @@
        // this won't happen.  Anyway, this is an example program, meant to
        // show good style, so we take the high road and ensure the
        // resources are allocated before we do any queries.
-       Connection::thread_start();
+       mysqlpp::Connection::thread_start();
 
        // Pull data from the sample table a bunch of times, releasing the
        // connection we use each time.
@@ -144,7 +144,7 @@
        *reinterpret_cast<bool*>(running_flag) = false;
        
        // Release the per-thread resources before we exit
-       Connection::thread_end();
+       mysqlpp::Connection::thread_end();
 
        return 0;
 }


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

Reply via email to