------------------------------------------------------------------------------
| 51 | |
| 52 | //------------------------------------------------------------------------------ |
| 53 | bool 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 | //------------------------------------------------------------------------------ |
| 65 | bool vtkDatabaseToTableReader::CheckIfTableExists() |
nothing calls this directly
no test coverage detected