| 178 | } |
| 179 | |
| 180 | IResultRow *SqResults::CurrentRow() |
| 181 | { |
| 182 | if (!m_RowCount || m_CurRow < 0 || m_CurRow >= m_RowCount) |
| 183 | { |
| 184 | return NULL; |
| 185 | } |
| 186 | return this; |
| 187 | } |
| 188 | |
| 189 | bool SqResults::Rewind() |
| 190 | { |
no outgoing calls
no test coverage detected