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 | @property (copy) OFDictionary *parameters; #endif - (void)setParameters: (OFDictionary*)parameters; - (OFDictionary*)parameters; - (void)connect; - (void)reset; | | | | 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; - (PGResult*)executeCommand: (OFConstantString*)command; - (PGResult*)executeCommand: (OFConstantString*)command parameters: (id)firstParameter, ...; - (PGconn*)PG_connection; - (void)insertRow: (OFDictionary*)row intoTable: (OFString*)table; - (void)insertRows: (OFArray*)rows intoTable: (OFString*)table; @end |
Modified PGConnection.m from [ef78860558] to [b727bf7ced].
︙ | ︙ | |||
54 55 56 57 58 59 60 | } - (void)reset { PQreset(conn); } | | | | 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); } - (PGResult*)executeCommand: (OFConstantString*)command { PGresult *result = PQexec(conn, [command UTF8String]); if (PQresultStatus(result) == PGRES_FATAL_ERROR) { PQclear(result); @throw [PGCommandFailedException exceptionWithClass: [self class] connection: self command: command]; } if (PQresultStatus(result) == PGRES_TUPLES_OK) return [PGResult PG_resultWithResult: result]; PQclear(result); return nil; } - (PGResult*)executeCommand: (OFConstantString*)command parameters: (id)parameter, ... { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; PGresult *result; const char **values; va_list args, args2; int argsCount; |
︙ | ︙ |