| 176 | } |
| 177 | |
| 178 | bool SqlCachedResult::fetchFirst() |
| 179 | { |
| 180 | if (d->forwardOnly && at() != QSql::BeforeFirstRow) { |
| 181 | return false; |
| 182 | } |
| 183 | if (d->canSeek(0)) { |
| 184 | setAt(0); |
| 185 | return true; |
| 186 | } |
| 187 | return cacheNext(); |
| 188 | } |
| 189 | |
| 190 | bool SqlCachedResult::fetchLast() |
| 191 | { |