summaryrefslogtreecommitdiffstats
path: root/old/includes/dbal.php
diff options
context:
space:
mode:
Diffstat (limited to 'old/includes/dbal.php')
-rw-r--r--old/includes/dbal.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/old/includes/dbal.php b/old/includes/dbal.php
deleted file mode 100644
index b7aafe2..0000000
--- a/old/includes/dbal.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-/******************************
-* EQdkp * Copyright 2002-2003
-* Licensed under the GNU GPL. See COPYING for full terms.
-* ------------------
-* dbal.php
-* begin: Tue December 17 2002
-*
-* $Id: dbal.php 46 2007-06-19 07:29:11Z tsigo $
-*
- ******************************/
-
-if ( !defined('EQDKP_INC') )
-{
- die('Do not access this file directly.');
-}
-
-switch ( $dbtype )
-{
- case 'mysql':
- include_once($eqdkp_root_path . 'dbal/mysql.php');
- break;
- default:
- include_once($eqdkp_root_path . 'dbal/mysql.php');
- break;
-}
-// Instantiate the class, which connects in the constructor
-$db = new SQL_DB($dbhost, $dbname, $dbuser, $dbpass, false);
-if ( !$db->link_id )
-{
- message_die('Could not connect to the database.');
-}
-?>