| 368 | } |
| 369 | |
| 370 | bool SQLiteObject::EndOfResult(S32 resultSet) |
| 371 | { |
| 372 | sqlite_resultset* pResultSet; |
| 373 | |
| 374 | pResultSet = GetResultSet(resultSet); |
| 375 | if (!pResultSet) |
| 376 | return true; |
| 377 | |
| 378 | if (pResultSet->iCurrentRow >= pResultSet->iNumRows) |
| 379 | return true; |
| 380 | |
| 381 | return false; |
| 382 | } |
| 383 | |
| 384 | void SQLiteObject::ClearErrorString() |
| 385 | { |