ObjPgSQL  Diff

Differences From Artifact [68a20488bf]:

To Artifact [7a8b6cc45d]:


65
66
67
68
69
70
71
72
73


74
75
76
77

78
79
80

81
82
83
84
65
66
67
68
69
70
71


72
73
74
75
76

77
78
79

80
81
82
83
84







-
-
+
+



-
+


-
+




				     [OFNumber numberWithInt: 2],
				     [OFNumber numberWithBool: true], nil];
	[_connection insertRow: [OFDictionary dictionaryWithKeysAndObjects:
				    @"content", @"Hallo!", @"name", @"foo", nil]
		     intoTable: @"test"];

	result = [_connection executeCommand: @"SELECT * FROM test"];
	of_log(@"%@", result);
	of_log(@"JSON: %@", [result JSONRepresentation]);
	OFLog(@"%@", result);
	OFLog(@"JSON: %@", [result JSONRepresentation]);

	for (id row in result)
		for (id col in row)
			of_log(@"%@", col);
			OFLog(@"%@", col);

	result = [_connection executeCommand: @"SELECT COUNT(*) FROM test"];
	of_log(@"%@", result);
	OFLog(@"%@", result);

	[OFApplication terminate];
}
@end