Login   Register  
PHP Classes
elePHPant
Icontem

File: configuration_factory/configuration.firebird.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of joel  >  POG - PHP Code Generator  >  configuration_factory/configuration.firebird.php  >  Download  
File: configuration_factory/configuration.firebird.php
Role: Configuration script
Content type: text/plain
Description: configuration for pdo firebird
Class: POG - PHP Code Generator
Generate object-relational mapping classes
Author: By
Last change:
Date: 2006-05-20 11:03
Size: 771 bytes
 

Contents

Class file image Download
<?php
/**
 * http://groups.google.com/group/mailing.www.php-dev/browse_thread/thread/6e0f0cea5cfb106a/83647b79c1867e06%2383647b79c1867e06?sa=X&oi=groupsr&start=0&num=3
 */
if (!isset($_SESSION))
{
    
session_start();
}
global 
$configuration;
$configuration['soap'] = "&soap";
$configuration['revisionNumber'] = "&revisionNumber";
$configuration['versionNumber'] = "&versionNumber";

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

// edit the information below to match your database settings

$configuration['db']     = 'localhost:C:\Inetpub\wwwroot\pog\TEST.fdb';    //    database path
$configuration['user']     = 'SYSDBA';                                        //    database user
$configuration['pass']     = 'masterkey';                                    //    database password
?>