mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
10 lines
189 B
PHP
Executable file
10 lines
189 B
PHP
Executable file
<?php
|
|
|
|
$DATABASE = '/opt/firebird/test.gdb';
|
|
$CONNECTION = "firebird:dbname=$DATABASE";
|
|
$USER = 'SYSDBA';
|
|
$PASSWORD = 'password';
|
|
|
|
$PDO_TESTS = dirname(__FILE__) . '/../../pdo/tests/';
|
|
|
|
?>
|