glom r1983 - in trunk: . glom/libglom/connectionpool_backends
- From: murrayc svn gnome org
- To: svn-commits-list gnome org
- Subject: glom r1983 - in trunk: . glom/libglom/connectionpool_backends
- Date: Fri, 13 Mar 2009 12:31:36 +0000 (UTC)
Author: murrayc
Date: Fri Mar 13 12:31:36 2009
New Revision: 1983
URL: http://svn.gnome.org/viewvc/glom?rev=1983&view=rev
Log:
2009-03-13 Murray Cumming <murrayc murrayc com>
* glom/libglom/connectionpool_backends/postgres.cc: Fix the build when
GLOM_CONNECTION_DEBUG is defined.
Modified:
trunk/ChangeLog
trunk/glom/libglom/connectionpool_backends/postgres.cc
Modified: trunk/glom/libglom/connectionpool_backends/postgres.cc
==============================================================================
--- trunk/glom/libglom/connectionpool_backends/postgres.cc (original)
+++ trunk/glom/libglom/connectionpool_backends/postgres.cc Fri Mar 13 12:31:36 2009
@@ -32,7 +32,7 @@
// Uncomment to see debug messages
-//#define GLOM_CONNECTION_DEBUG
+// #define GLOM_CONNECTION_DEBUG
namespace
{
@@ -106,7 +106,7 @@
#endif
#ifdef GLOM_CONNECTION_DEBUG
- std::cout << "ConnectionPoolBackends::PostgresCentralHosted::attempt_connect(): Attempt to connect to database failed on port=" << port << ", database=" << actual_database << ": " << ex.what() << std::endl;
+ std::cout << "ConnectionPoolBackends::PostgresCentralHosted::attempt_connect(): Attempt to connect to database failed on port=" << port << ", database=" << database << ": " << ex.what() << std::endl;
std::cout << "ConnectionPoolBackends::PostgresCentralHosted::attempt_connect(): Attempting to connect without specifying the database." << std::endl;
#endif
@@ -124,9 +124,9 @@
#ifdef GLOM_CONNECTION_DEBUG
if(temp_conn)
- std::cout << " (Connection succeeds, but not to the specific database, database=" << m_database << std::endl;
+ std::cout << " (Connection succeeds, but not to the specific database, database=" << database << std::endl;
else
- std::cerr << " (Could not connect even to the default database, database=" << m_database << std::endl;
+ std::cerr << " (Could not connect even to the default database, database=" << database << std::endl;
#endif
error.reset(new ExceptionConnection(temp_conn ? ExceptionConnection::FAILURE_NO_DATABASE : ExceptionConnection::FAILURE_NO_SERVER));
@@ -148,7 +148,7 @@
m_postgres_server_version = strtof(versionPart.c_str(), NULL);
#ifdef GLOM_CONNECTION_DEBUG
- std::cout << " Postgres Server version: " << postgres_server_version << std::endl;
+ std::cout << " Postgres Server version: " << m_postgres_server_version << std::endl;
#endif
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]