VTK
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 <string> // STL Header
28 #include "vtkTableAlgorithm.h"
29 
30 class vtkSQLDatabase;
31 class vtkStringArray;
32 
33 class VTKIOSQL_EXPORT vtkDatabaseToTableReader : public vtkTableAlgorithm
34 {
35 public:
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
42  bool SetDatabase(vtkSQLDatabase *db);
43 
48  bool SetTableName(const char *name);
49 
53  bool CheckIfTableExists();
54 
55  vtkSQLDatabase *GetDatabase() { return this->Database; }
56 
57 protected:
61  vtkInformationVector *) = 0;
63 
65 
66 private:
67  vtkDatabaseToTableReader(const vtkDatabaseToTableReader&) VTK_DELETE_FUNCTION;
68  void operator=(const vtkDatabaseToTableReader&) VTK_DELETE_FUNCTION;
69 };
70 
71 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store vtkAlgorithm input/output information.
a vtkAbstractArray subclass for strings
Read an SQL table as a vtkTable.
maintain a connection to an sql database
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Superclass for algorithms that produce only vtkTables as output.
Store zero or more vtkInformation instances.