MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / EndOfResult

Method EndOfResult

Engine/source/sqlite/SQLiteObject.cpp:370–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

368}
369
370bool 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
384void SQLiteObject::ClearErrorString()
385{

Callers 1

SQLiteObject.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected