Mercurial > hg > orthanc-postgresql
view Core/PostgreSQLConnection.h @ 178:1b22bbc8468b OrthancPostgreSQL-2.1
OrthancPostgreSQL-2.1
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 20 Apr 2018 14:43:36 +0200 (2018-04-20) |
parents | 25d524f26a14 |
children |
line wrap: on
line source
/** * Orthanc - A Lightweight, RESTful DICOM Store * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2018 Osimis S.A., Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #pragma once #include <string> #include <boost/noncopyable.hpp> #include <stdint.h> namespace OrthancPlugins { class PostgreSQLConnection : public boost::noncopyable { private: friend class PostgreSQLStatement; friend class PostgreSQLLargeObject; std::string host_; uint16_t port_; std::string username_; std::string password_; std::string database_; std::string uri_; void* pg_; /* Object of type "PGconn*" */ void Close(); public: PostgreSQLConnection(); ~PostgreSQLConnection() { Close(); } void SetConnectionUri(const std::string& uri); std::string GetConnectionUri() const; void SetHost(const std::string& host); const std::string& GetHost() const { return host_; } void SetPortNumber(uint16_t port); uint16_t GetPortNumber() const { return port_; } void SetUsername(const std::string& username); const std::string& GetUsername() const { return username_; } void SetPassword(const std::string& password); const std::string& GetPassword() const { return password_; } void SetDatabase(const std::string& database); void ResetDatabase() { SetDatabase(""); } const std::string& GetDatabase() const { return database_; } void Open(); void Execute(const std::string& sql); bool DoesTableExist(const char* name); void ClearAll(); }; }