ObjPgSQL  Diff

Differences From Artifact [3b03b54ad4]:

To Artifact [0be804aea6]:


12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
	self = [super init];

	@try {
		_connection = [connection retain];
		_error = [[OFString alloc]
		    initWithCString: PQerrorMessage([_connection PG_connection])
			   encoding: [OFSystemInfo native8BitEncoding]];
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}







|







12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
	self = [super init];

	@try {
		_connection = [connection retain];
		_error = [[OFString alloc]
		    initWithCString: PQerrorMessage([_connection PG_connection])
			   encoding: [OFLocalization encoding]];
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}