Differences From Artifact [06d3e5a1c9]:
- File PGResultRow.m — part of check-in [2da674855b] at 2012-10-30 22:33:40 on branch trunk — Implement fast enumeration. (user: js, size: 3723) [annotate] [blame] [check-ins using]
To Artifact [fce9f9ad1f]:
- File PGResultRow.m — part of check-in [7ee61bb762] at 2013-01-03 19:35:35 on branch trunk — Fix missing dealloc. (user: js, size: 3782) [annotate] [blame] [check-ins using]
︙ | |||
151 152 153 154 155 156 157 158 159 160 161 162 163 164 | 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | + + + + + + + | result = [result_ retain]; res = [result PG_result]; row = row_; count = PQnfields(res); return self; } - (void)dealloc { [result release]; [super dealloc]; } - (void)reset { pos = 0; } @end |
︙ |