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

Method GetResultSet

Engine/source/sqlite/SQLiteObject.cpp:439–450  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

437}
438
439sqlite_resultset* SQLiteObject::GetResultSet(S32 iResultSet)
440{
441 // Get the result set specified by iResultSet
442 VectorPtr<sqlite_resultset*>::iterator i;
443 for (i = m_vResultSets.begin(); i != m_vResultSets.end(); i++)
444 {
445 if ((*i)->iResultSet == iResultSet)
446 break;
447 }
448
449 return *i;
450}
451
452S32 SQLiteObject::GetResultSetIndex(S32 iResultSet)
453{

Callers 1

SQLiteObject.cppFile · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected