46#ifndef vtkPostgreSQLDatabase_h
47#define vtkPostgreSQLDatabase_h
49#include "vtkIOPostgreSQLModule.h"
61 friend class vtkPostgreSQLQueryPrivate;
73 bool Open(
const char* password =
nullptr)
override;
112 vtkGetStringMacro(HostName);
120 vtkGetStringMacro(User);
133 vtkGetStringMacro(DatabaseName);
141 vtkGetStringMacro(ConnectOptions);
148 virtual void SetServerPort(
int);
151 vtkGetMacro(ServerPort,
int);
232 vtkSetStringMacro(DatabaseType);
233 vtkSetStringMacro(LastErrorText);
258#define vtkSetStringPlusMTimeMacro(className, name, timeStamp) \
259 inline void className::Set##name(const char* _arg) \
261 vtkDebugMacro(<< this->GetClassName() << " (" << this << "): setting " << #name " to " \
262 << (_arg ? _arg : "(null)")); \
263 if (this->name == nullptr && _arg == nullptr) \
267 if (this->name && _arg && (!strcmp(this->name, _arg))) \
271 delete[] this->name; \
274 size_t n = strlen(_arg) + 1; \
275 char* cp1 = new char[n]; \
276 const char* cp2 = (_arg); \
285 this->name = nullptr; \
288 this->timeStamp.Modified(); \
300 vtkDebugMacro(<< this->
GetClassName() <<
" (" <<
this <<
"): setting ServerPort to " << _arg);
a simple class to control print indentation
const char * GetClassName() const
Return the class name as a string.
virtual void Modified()
Update the modification time for this object.
internal details of a connection to a PostgreSQL database
maintain a connection to a PostgreSQL database
virtual int GetServerPortMinValue()
The port used for connecting to the database.
bool Open(const char *password=nullptr) override
Open a new connection to the database.
vtkSQLQuery * GetQueryInstance() override
Return an empty query on this database.
bool IsOpen() override
Return whether the database has an open connection.
virtual void SetServerPort(int)
The port used for connecting to the database.
virtual void SetConnectOptions(const char *)
Additional options for the database.
virtual void SetDatabaseName(const char *)
The name of the database to connect to.
bool HasError() override
Did the last operation generate an error.
void NullTrailingWhitespace(char *msg)
~vtkPostgreSQLDatabase() override
void UpdateDataTypeMap()
Create or refresh the map from Postgres column types to VTK array types.
bool IsSupported(int feature) override
Return whether a feature is supported by the database.
virtual void SetHostName(const char *)
The database server host name.
const char * GetDatabaseType() override
String representing database type (e.g.
static vtkPostgreSQLDatabase * New()
bool ParseURL(const char *url) override
Overridden to determine connection parameters given the URL.
vtkStdString GetColumnSpecification(vtkSQLDatabaseSchema *schema, int tblHandle, int colHandle) override
Return the SQL string with the syntax to create a column inside a "CREATE TABLE" SQL statement.
virtual void SetUser(const char *)
The user name for connecting to the database server.
vtkStringArray * GetRecord(const char *table) override
Get the list of fields for a particular table.
vtkStringArray * GetDatabases()
Return a list of databases on the server.
bool DropDatabase(const char *dbName)
Drop a database if it exists.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
bool OpenInternal(const char *connectionOptions)
virtual int GetServerPortMaxValue()
The port used for connecting to the database.
const char * GetLastErrorText() override
Get the last error text from the database.
void Close() override
Close the connection to the database.
vtkStdString GetURL() override
Get a URL referencing the current database connection.
vtkPostgreSQLDatabasePrivate * Connection
bool CreateDatabase(const char *dbName, bool dropExisting=false)
Create a new database, optionally dropping any existing database of the same name.
vtkTimeStamp ConnectionMTime
vtkStringArray * GetTables() override
Get the list of tables from the database.
virtual void SetPassword(const char *)
The user's password for connecting to the database server.
vtkSQLQuery implementation for PostgreSQL databases
represent an SQL database schema
maintain a connection to an sql database
executes an sql query and retrieves results
Wrapper around std::string to keep symbols short.
a vtkAbstractArray subclass for strings
record modification and/or execution time
void Modified()
Set this objects time to the current time.
#define vtkSetStringPlusMTimeMacro(className, name, timeStamp)