mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Doxygen
This commit is contained in:
parent
8f9ef87838
commit
4b248263c8
|
|
@ -37,20 +37,26 @@ class DoliDBPgsql extends DoliDB
|
|||
{
|
||||
//! Database type
|
||||
public $type = 'pgsql'; // Name of manager
|
||||
|
||||
//! Database label
|
||||
const LABEL = 'PostgreSQL'; // Label of manager
|
||||
|
||||
//! Charset
|
||||
public $forcecharset = 'UTF8'; // Can't be static as it may be forced with a dynamic value
|
||||
|
||||
//! Collate used to force collate when creating database
|
||||
public $forcecollate = ''; // Can't be static as it may be forced with a dynamic value
|
||||
|
||||
//! 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;
|
||||
|
||||
public $unescapeslashquot;
|
||||
public $standard_conforming_strings;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* This create an opened connexion to a database server and eventually to a database
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user