Differences From Artifact [260fd28f22]:
- File
PGConnection.h
— part of check-in
[d2fe40f160]
at
2012-10-05 20:17:45
on branch trunk
— Nicer API.
-[executeCommand:parameters:] is now a variadic function instead of
taking an array as argument. (user: js, size: 507) [annotate] [blame] [check-ins using]
To Artifact [a215486c79]:
- File PGConnection.h — part of check-in [7b335b3af8] at 2012-10-06 21:02:02 on branch trunk — Add -[insertRows:intoTable:]. (user: js, size: 641) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 25 | - (OFDictionary*)parameters; - (void)connect; - (void)reset; - (PGResult*)executeCommand: (OFString*)command; - (PGResult*)executeCommand: (OFString*)command parameters: (id)firstParameter, ...; - (PGconn*)PG_connection; @end | > > > > | 18 19 20 21 22 23 24 25 26 27 28 29 | - (OFDictionary*)parameters; - (void)connect; - (void)reset; - (PGResult*)executeCommand: (OFString*)command; - (PGResult*)executeCommand: (OFString*)command parameters: (id)firstParameter, ...; - (PGconn*)PG_connection; - (void)insertRow: (OFDictionary*)row intoTable: (OFString*)table; - (void)insertRows: (OFArray*)rows intoTable: (OFString*)table; @end |