MCPcopy Create free account
hub / github.com/Kitware/VTK / NextRow

Method NextRow

IO/SQL/vtkRowQuery.cxx:62–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62bool vtkRowQuery::NextRow(vtkVariantArray* rowArray)
63{
64 if (!this->NextRow())
65 {
66 return false;
67 }
68 rowArray->Reset();
69 for (int col = 0; col < this->GetNumberOfFields(); col++)
70 {
71 rowArray->InsertNextValue(this->DataValue(col));
72 }
73 return true;
74}
75VTK_ABI_NAMESPACE_END

Callers 5

RequestDataMethod · 0.45
RequestDataMethod · 0.45
GetTablesMethod · 0.45
GetRecordMethod · 0.45
TestSQLiteDatabaseFunction · 0.45

Calls 4

ResetMethod · 0.45
GetNumberOfFieldsMethod · 0.45
InsertNextValueMethod · 0.45
DataValueMethod · 0.45

Tested by 1

TestSQLiteDatabaseFunction · 0.36