This commit is contained in:
Laurent Destailleur 2021-01-25 12:29:31 +01:00
parent 8f9ef87838
commit 4b248263c8

View File

@ -37,20 +37,26 @@ class DoliDBPgsql extends DoliDB
{ {
//! Database type //! Database type
public $type = 'pgsql'; // Name of manager public $type = 'pgsql'; // Name of manager
//! Database label //! Database label
const LABEL = 'PostgreSQL'; // Label of manager const LABEL = 'PostgreSQL'; // Label of manager
//! Charset //! Charset
public $forcecharset = 'UTF8'; // Can't be static as it may be forced with a dynamic value public $forcecharset = 'UTF8'; // Can't be static as it may be forced with a dynamic value
//! Collate used to force collate when creating database //! Collate used to force collate when creating database
public $forcecollate = ''; // Can't be static as it may be forced with a dynamic value public $forcecollate = ''; // Can't be static as it may be forced with a dynamic value
//! Version min database //! Version min database
const VERSIONMIN = '9.0.0'; // Version min database const VERSIONMIN = '9.0.0'; // Version min database
/** @var resource Resultset of last query */
/** @var resource|boolean Resultset of last query */
private $_results; private $_results;
public $unescapeslashquot; public $unescapeslashquot;
public $standard_conforming_strings; public $standard_conforming_strings;
/** /**
* Constructor. * Constructor.
* This create an opened connexion to a database server and eventually to a database * This create an opened connexion to a database server and eventually to a database