PHP Classes

File: configuration_factory/configuration.pgsql.php

Recommend this page to a friend!
  Classes of joel   POG - PHP Code Generator   configuration_factory/configuration.pgsql.php   Download  
File: configuration_factory/configuration.pgsql.php
Role: Configuration script
Content type: text/plain
Description: configuration forpdo postgresql
Class: POG - PHP Code Generator
Generate object-relational mapping classes
Author: By
Last change:
Date: 17 years ago
Size: 602 bytes
 

Contents

Class file image Download
<?php
if (!isset($_SESSION))
{
   
session_start();
}
global
$configuration;
$configuration['soap'] = "&soap";
$configuration['revisionNumber'] = "&revisionNumber";
$configuration['versionNumber'] = "&versionNumber";

$configuration['pdoDriver']= 'pgsql';
$configuration['db_encoding'] = &db_encoding;

// edit the information below to match your database settings

$configuration['db'] = 'template1'; // database name
$configuration['host'] = 'localhost'; // database host
$configuration['user'] = 'root'; // database user
$configuration['pass'] = 'pass'; // database password
?>