Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

localpipe



pgAdmin talks about a <localpipe>, but the thing is in fact a local
socket, not a pipe.  I suggest the following change.


--- src/base/pgConnBase.cpp     (Revision 5031)
+++ src/base/pgConnBase.cpp     (Arbeitskopie)
@@ -259,7 +259,7 @@
 {
     wxString str;
     if (dbHost.IsEmpty())
-        str.Printf(_("%s on <localpipe>"), dbname.c_str());
+        str.Printf(_("%s on local socket"), dbname.c_str());
     else
         str.Printf(_("%s on %s:%d"), dbname.c_str(), dbHost.c_str(), GetPort());
     return str;


-- 
Peter Eisentraut
http://developer.postgresql.org/~petere/



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group