ObjPgSQL  Check-in [f80e0a2206]

Overview
Comment:Adjust to ObjFW changes
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f80e0a2206af420395272b5ebeec1d76a4b2731931c220828c95afa9b771dc10
User & Date: js on 2024-08-07 19:49:45
Other Links: manifest | tags
Context
2024-08-07
19:57
Fix warnings check-in: 47585409b5 user: js tags: trunk
19:49
Adjust to ObjFW changes check-in: f80e0a2206 user: js tags: trunk
19:43
Migrate build system to Meson check-in: a27ad474c4 user: js tags: trunk
Changes

Modified tests/Tests.m from [7a8b6cc45d] to [fd95d3d886].

31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
	PGConnection *_connection;
}
@end

OF_APPLICATION_DELEGATE(Test)

@implementation Test
- (void)applicationDidFinishLaunching
{
	OFString *username =
	    [[OFApplication environment] objectForKey: @"USER"];
	PGResult *result;

	_connection = [[PGConnection alloc] init];
	[_connection setParameters:







|







31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
	PGConnection *_connection;
}
@end

OF_APPLICATION_DELEGATE(Test)

@implementation Test
- (void)applicationDidFinishLaunching: (OFNotification *)notification
{
	OFString *username =
	    [[OFApplication environment] objectForKey: @"USER"];
	PGResult *result;

	_connection = [[PGConnection alloc] init];
	[_connection setParameters: