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

Method SetTableName

IO/SQL/vtkDatabaseToTableReader.cxx:53–62  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

51
52//------------------------------------------------------------------------------
53bool vtkDatabaseToTableReader::SetTableName(const char* name)
54{
55 std::string nameStr = name;
56 this->TableName = nameStr;
57 if (this->Database->IsOpen())
58 {
59 return this->CheckIfTableExists();
60 }
61 return true;
62}
63
64//------------------------------------------------------------------------------
65bool vtkDatabaseToTableReader::CheckIfTableExists()

Callers

nothing calls this directly

Calls 2

CheckIfTableExistsMethod · 0.95
IsOpenMethod · 0.45

Tested by

no test coverage detected