| 167 | } |
| 168 | |
| 169 | IResultRow *SqResults::FetchRow() |
| 170 | { |
| 171 | m_CurRow = m_NextRow; |
| 172 | if (m_CurRow >= m_RowCount) |
| 173 | { |
| 174 | return NULL; |
| 175 | } |
| 176 | m_NextRow++; |
| 177 | return this; |
| 178 | } |
| 179 | |
| 180 | IResultRow *SqResults::CurrentRow() |
| 181 | { |
no outgoing calls
no test coverage detected