Overview
Comment: | Enforce queries to be constant. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
53f46b10cd4a35208fd4ee2e10dcdb9d |
User & Date: | js on 2012-10-08 18:52:33 |
Other Links: | manifest | tags |
Context
2012-10-08
| ||
18:53 | Stricter error checking. check-in: cbc15fadc1 user: js tags: trunk | |
18:52 | Enforce queries to be constant. check-in: 53f46b10cd user: js tags: trunk | |
2012-10-07
| ||
22:45 | Convert types using the result of PQftypes(). check-in: 4a2b1fff7e user: js tags: trunk | |
Changes
Modified PGConnection.h from [a215486c79] to [3dc7c98fac].
︙ | |||
14 15 16 17 18 19 20 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | - - + + | @property (copy) OFDictionary *parameters; #endif - (void)setParameters: (OFDictionary*)parameters; - (OFDictionary*)parameters; - (void)connect; - (void)reset; |
Modified PGConnection.m from [ef78860558] to [b727bf7ced].
︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | - + - + | } - (void)reset { PQreset(conn); } |
︙ |