PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Camilo Sperberg   Extended PGSQL   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: The configuration needed to run the class
Class: Extended PGSQL
Access PostGreSQL databases using PDO
Author: By
Last change:
Date: 12 years ago
Size: 826 bytes
 

Contents

Class file image Download
<?php if(empty($proc)) die('No direct access allowed');

define('CHARSET','UTF-8');
define('DB_SHOW_ERRORS',TRUE); // Show DB connection error to users?
define('DB_LOG_XML',FALSE); // Log all database activity to XML?
define('DB_URL_XML','/home/user/db-log.xml'); // Location of XML file, recommended place is outside the public_html directory!
define('DB_CACHE_LOCATION','cache/'); // Location of cache file(s), with trailing slash
define('DB_CACHE_EXPIRE','60'); // DB cache file expiricy, in seconds

define('PGSQL_HOST','localhost'); // your db's host
define('PGSQL_PORT',5432); // your db's port
define('PGSQL_USER','test'); // your db's username
define('PGSQL_PASS','test'); // your db's password
define('PGSQL_NAME','test'); // your db's database name
define('PGSQL_FETCH_MODE',PDO::FETCH_ASSOC);