Differences From Artifact [fdaa72966b]:
- File PGConnection.h — part of check-in [8c8a431322] at 2013-02-13 23:40:59 on branch trunk — Prefix all ivars with an underscore. (user: js, size: 678) [annotate] [blame] [check-ins using]
To Artifact [37db765c44]:
- File PGConnection.h — part of check-in [52b090139e] at 2013-05-18 01:37:43 on branch trunk — Add -[PGConnection close]. (user: js, size: 693) [annotate] [blame] [check-ins using]
- File src/PGConnection.h — part of check-in [8679c61b2c] at 2014-07-18 23:35:18 on branch trunk — Add a proper build system (user: js, size: 693) [annotate] [blame] [check-ins using]
︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + | @property (copy) OFDictionary *parameters; #endif - (void)setParameters: (OFDictionary*)parameters; - (OFDictionary*)parameters; - (void)connect; - (void)reset; - (void)close; - (PGResult*)executeCommand: (OFConstantString*)command; - (PGResult*)executeCommand: (OFConstantString*)command parameters: (id)firstParameter, ... OF_SENTINEL; - (PGconn*)PG_connection; - (void)insertRow: (OFDictionary*)row intoTable: (OFString*)table; - (void)insertRows: (OFArray*)rows |
︙ |