------------------------------------------------------------------------------
| 292 | |
| 293 | //------------------------------------------------------------------------------ |
| 294 | void vtkPostgreSQLDatabase::Close() |
| 295 | { |
| 296 | if (this->Connection) |
| 297 | { |
| 298 | delete this->Connection; |
| 299 | this->Connection = nullptr; |
| 300 | this->SetLastErrorText(nullptr); |
| 301 | this->URLMTime.Modified(); // Force a re-open to occur when Open() is called. |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | //------------------------------------------------------------------------------ |
| 306 | bool vtkPostgreSQLDatabase::IsOpen() |
no test coverage detected