TYPO3 API  SVNRelease
postgresql.config.php
Go to the documentation of this file.
00001 <?php
00002 /**
00003  * PostgreSQL configuration
00004  *
00005  * $Id$
00006  *
00007  * @author Xavier Perseguers <typo3@perseguers.ch>
00008  *
00009  * @package TYPO3
00010  * @subpackage dbal
00011  */
00012 global $TYPO3_CONF_VARS;
00013 
00014 $TYPO3_CONF_VARS['EXTCONF']['dbal']['handlerCfg'] = array(
00015     '_DEFAULT' => array(
00016         'type' => 'adodb',
00017         'config' => array(
00018             'driver' => 'postgres',
00019         ),
00020     ),
00021 );
00022 ?>