VTK  9.1.0
vtkDatabaseToTableReader.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkDatabaseToTableReader.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
23#ifndef vtkDatabaseToTableReader_h
24#define vtkDatabaseToTableReader_h
25
26#include "vtkIOSQLModule.h" // For export macro
27#include "vtkTableAlgorithm.h"
28#include <string> // STL Header
29
30class vtkSQLDatabase;
31class vtkStringArray;
32
33class VTKIOSQL_EXPORT vtkDatabaseToTableReader : public vtkTableAlgorithm
34{
35public:
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
43
48 bool SetTableName(const char* name);
49
54
55 vtkSQLDatabase* GetDatabase() { return this->Database; }
56
57protected:
62
64
65private:
67 void operator=(const vtkDatabaseToTableReader&) = delete;
68};
69
70#endif
Read an SQL table as a vtkTable.
bool CheckIfTableExists()
Check if the currently specified table name exists in the database.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
bool SetTableName(const char *name)
Set the name of the table that you'd like to convert to a vtkTable Returns false if the specified tab...
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override=0
This is called by the superclass.
~vtkDatabaseToTableReader() override
bool SetDatabase(vtkSQLDatabase *db)
Set the database associated with this reader.
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
maintain a connection to an sql database
a vtkAbstractArray subclass for strings
Superclass for algorithms that produce only vtkTables as output.
@ name
Definition: vtkX3D.h:225
@ string
Definition: vtkX3D.h:496