Index: NpgsqlConnection.cs
===================================================================
RCS file: /mono/mcs/class/Npgsql/Npgsql/NpgsqlConnection.cs,v
retrieving revision 1.16
diff -u -r1.16 NpgsqlConnection.cs
--- NpgsqlConnection.cs	13 Mar 2004 14:15:23 -0000	1.16
+++ NpgsqlConnection.cs	19 Mar 2004 21:59:30 -0000
@@ -465,6 +465,7 @@
                     Connector.ServerVersion = ServerVersion;
                     Connector.BackendProtocolVersion = BackendProtocolVersion;
                     Connector.Encoding = connection_encoding;
+					Console.WriteLine("AAA ServerVersion: {0} {1}", ServerVersion, ServerVersion != null);
                     
                 }
                                 
@@ -473,6 +474,7 @@
                 
                 connection_state = ConnectionState.Open;
                 ServerVersion = Connector.ServerVersion;
+				Console.WriteLine("ZZZ ServerVersion: {0} {1}", ServerVersion, ServerVersion != null);
                 BackendProtocolVersion = Connector.BackendProtocolVersion;
                 Encoding = Connector.Encoding;
                 
@@ -633,6 +635,11 @@
             NpgsqlEventLog.LogMethodEnter(LogLevel.Debug, CLASSNAME, "ProcessServerVersion");
             // FIXME: Do a better parsing of server version to avoid
             // hardcode version numbers.
+			//
+			if (_serverVersion == null)
+			{
+				Console.WriteLine("_serverVersion is null");
+			}
 
             if (BackendProtocolVersion == ProtocolVersion.Version2)
             {
