ObjPgSQL  Diff

Differences From Artifact [de24e68bdc]:

To Artifact [b1115b7f5a]:


1
2
3
4
5
6
7

8
9
10

11
12
1
2
3
4
5
6

7



8
9
10






-
+
-
-
-
+


#import "PGConnectionFailedException.h"

@implementation PGConnectionFailedException
- (OFString*)description
{
	return [OFString stringWithFormat:
	    @"Establishing a PostgreSQL connection in class %@ failed:\n%s\n"
	    @"Establishing a PostgreSQL connection failed:\n%@\n"
	    "Parameters: %@", [self inClass],
	    PQerrorMessage([_connection PG_connection]),
	    [_connection parameters]];
	    "Parameters: %@", _error, [_connection parameters]];
}
@end