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 2024-08-07 19:49:45
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
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to tests/Tests.m.

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: