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:
|