<?php
/**
* SQL Solution's PostgresSQL connection information
*
* @package SQLSolution
* @author Daniel Convissor <hide@address.com>
* @copyright The Analysis and Solutions Company, 2001-2011
* @license http://www.analysisandsolutions.com/software/license.htm Simple Public License
* @link http://www.analysisandsolutions.com/software/sql/sql.htm
* @see SQLSolution/General.php
*/
/**
* SQL Solution's PostgresSQL connection information
*
* @package SQLSolution
* @author Daniel Convissor <hide@address.com>
* @copyright The Analysis and Solutions Company, 2001-2011
* @license http://www.analysisandsolutions.com/software/license.htm Simple Public License
* @link http://www.analysisandsolutions.com/software/sql/sql.htm
*/
class SQLSolution_PostgreSQLUser extends SQLSolution_PostgreSQLSpecifics {
/**
* The host name or IP address of the database server
* @var string
*/
public $SQLHost = '';
/**
* The user name for logging in to the database
* @var string
*/
public $SQLUser = '';
/**
* The password for logging in to the database
* @var string
*/
public $SQLPassword = '';
/**
* The name of the database
* @var string
*/
public $SQLDbName = '';
/**
* The port on which the database server is listening
* @var string
*/
public $SQLPort = '';
/**
* Command line options
* @var string
*/
public $SQLOptions = '';
/**
* This is obsolete, PHP ignores it
* @var string
*/
public $SQLTTY = '';
/**
* Automatically sets basic properties when instantiating a new object
*/
public function __construct($Escape = 'Y', $Safe = 'N') {
$this->SQLClassName = get_class($this);
$this->SQLEscapeHTML = $Escape;
$this->SQLSafeMarkup = $Safe;
}
}