15 #ifndef vtkQtSQLDatabase_h
16 #define vtkQtSQLDatabase_h
18 #include "vtkGUISupportQtSQLModule.h"
21 #include <QtSql/QSqlDatabase>
23 VTK_ABI_NAMESPACE_BEGIN
39 bool Open(
const char* password)
override;
44 void Close()
override;
78 void SetColumnsTable(
const char* table);
100 vtkSetStringMacro(DatabaseType);
107 vtkSetStringMacro(HostName);
108 vtkGetStringMacro(HostName);
115 vtkSetStringMacro(UserName);
116 vtkGetStringMacro(UserName);
123 vtkSetStringMacro(DatabaseName);
124 vtkGetStringMacro(DatabaseName);
131 vtkSetStringMacro(ConnectOptions);
132 vtkGetStringMacro(ConnectOptions);
139 vtkSetClampMacro(DbPort,
int, 0, 65535);
140 vtkGetMacro(DbPort,
int);
194 VTK_ABI_NAMESPACE_END
195 #endif // vtkQtSQLDatabase_h
Wrapper around std::string to keep symbols short.
static vtkSQLDatabase * CreateFromURL(const char *URL)
Create a the proper subclass given a URL.
const char * GetDatabaseType() override
String representing Qt database type (e.g.
friend class vtkQtSQLDatabase
virtual bool IsSupported(int vtkNotUsed(feature))
Return whether a feature is supported by the database.
virtual bool Open(const char *password)=0
Open a new connection to the database.
virtual bool ParseURL(const char *url)=0
Subclasses should override this method to determine connection parameters given the URL...
virtual bool HasError()=0
Did the last operation generate an error.
a vtkAbstractArray subclass for strings
virtual vtkStdString GetURL()=0
Get the URL of the database.
virtual vtkStringArray * GetRecord(const char *table)=0
Get the list of fields for a particular table.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
maintain a connection to an sql database
query class associated with vtkQtSQLDatabase
virtual void Close()=0
Close the connection to the database.
a simple class to control print indentation
virtual vtkSQLQuery * GetQueryInstance()=0
Return an empty query on this database.
virtual bool IsOpen()=0
Return whether the database has an open connection.
virtual const char * GetLastErrorText()=0
Get the last error text from the database I'm using const so that people do NOT use the standard vtkG...
executes an sql query and retrieves results
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
virtual vtkStringArray * GetTables()=0
Get the list of tables from the database.
maintains a connection to an sql database