MCPcopy Create free account
hub / github.com/alliedmodders/sourcemod / FetchRow

Method FetchRow

extensions/sqlite/driver/SqResults.cpp:169–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169IResultRow *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
180IResultRow *SqResults::CurrentRow()
181{

Callers 3

SQL_FetchRowFunction · 0.45
ClientConnectCallbackMethod · 0.45
SelectIdCallbackMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected