Differences From Artifact [6557d3c745]:
- File src/PGConnection.h — part of check-in [31c5599df5] at 2024-08-11 09:22:44 on branch trunk — Change license to unmodified ISC (user: js, size: 1613) [annotate] [blame] [check-ins using]
To Artifact [a09ffbf71b]:
- File
src/PGConnection.h
— part of check-in
[30633656b0]
at
2024-08-11 17:22:05
on branch trunk
— Remove -[PGConnection insertRow:]
It can be used in a way that leads to security issues, so it's better
not to have it at all. (user: js, size: 1467) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
37 38 39 40 41 42 43 | - (void)connect; - (void)reset; - (void)close; - (nullable PGResult *)executeCommand: (OFConstantString *)command; - (nullable PGResult *)executeCommand: (OFConstantString *)command parameters: (id)firstParameter, ... OF_SENTINEL; | < < < | 37 38 39 40 41 42 43 44 45 46 | - (void)connect; - (void)reset; - (void)close; - (nullable PGResult *)executeCommand: (OFConstantString *)command; - (nullable PGResult *)executeCommand: (OFConstantString *)command parameters: (id)firstParameter, ... OF_SENTINEL; @end OF_ASSUME_NONNULL_END |