diff options
Diffstat (limited to 'phpBB/includes/db/firebird.php')
-rw-r--r-- | phpBB/includes/db/firebird.php | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/phpBB/includes/db/firebird.php b/phpBB/includes/db/firebird.php index a31a7c3716..526dc70f5b 100644 --- a/phpBB/includes/db/firebird.php +++ b/phpBB/includes/db/firebird.php @@ -1,21 +1,26 @@ <?php -// ------------------------------------------------------------- -// -// $Id$ -// -// FILENAME : firebird.php -// STARTED : Sat Feb 13, 2001 -// COPYRIGHT : © 2001, 2003 phpBB Group -// WWW : http://www.phpbb.com/ -// LICENCE : GPL vs2.0 [ see /docs/COPYING ] -// -// ------------------------------------------------------------- - +/** +* +* @package dbal_firebird +* @version $Id$ +* @copyright (c) 2005 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +/** +* @ignore +*/ if (!defined('SQL_LAYER')) { define('SQL_LAYER', 'firebird'); +/** +* @package dbal_firebird +* Firebird/Interbase Database Abstraction Layer +* Minimum Requirement is Firebird 1.5+/Interbase 7.1+ +*/ class sql_db { var $db_connect_id; |