Files
geodb/geoapi/config/config.db.php
2013-06-25 13:32:00 +02:00

37 lines
543 B
PHP

<?php
namespace config;
/**
* This clas is an container for the DBConf
*/
class DBConfig {
/**
* Address of the sqlserver
* @var string
*/
public static $sqlServer = "localhost";
/**
* name of the database
* @var string
*/
public static $sqlDBName = "geoDB";
/**
* user of the database
* @var string
*/
public static $sqlDBUser = "geoDB";
/**
* password of the database
* @var string
*/
public static $sqlDBUserPW = "VZrSAYvmcrntQ97b";
}
?>