blob: 2dd86e14e7787db0238769be2f10dd6fd08eb3e1 [file] [log] [blame]
Derek Jones0b59f272008-05-13 04:22:33 +00001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allardd2df9bc2007-04-15 17:41:17 +00002/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 4.3.2 or newer
6 *
7 * @package CodeIgniter
Derek Allard3d879d52008-01-18 19:41:32 +00008 * @author ExpressionEngine Dev Team
Derek Allardd2df9bc2007-04-15 17:41:17 +00009 * @copyright Copyright (c) 2006, EllisLab, Inc.
Derek Jones7a9193a2008-01-21 18:39:20 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
Derek Allardd2df9bc2007-04-15 17:41:17 +000012 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * Initialize the database
20 *
21 * @category Database
Derek Allard3d879d52008-01-18 19:41:32 +000022 * @author ExpressionEngine Dev Team
Derek Jones7a9193a2008-01-21 18:39:20 +000023 * @link http://codeigniter.com/user_guide/database/
Derek Allardd2df9bc2007-04-15 17:41:17 +000024 */
Derek Jones75d568d2008-01-30 20:26:25 +000025function &DB($params = '', $active_record_override = FALSE)
Derek Allardd2df9bc2007-04-15 17:41:17 +000026{
27 // Load the DB config file if a DSN string wasn't passed
28 if (is_string($params) AND strpos($params, '://') === FALSE)
29 {
30 include(APPPATH.'config/database'.EXT);
31
Derek Jones0b59f272008-05-13 04:22:33 +000032 if ( ! isset($db) OR count($db) == 0)
Derek Allardd2df9bc2007-04-15 17:41:17 +000033 {
Derek Allard39b622d2008-01-16 21:10:09 +000034 show_error('No database connection settings were found in the database config file.');
Derek Allardd2df9bc2007-04-15 17:41:17 +000035 }
36
Derek Allard39b622d2008-01-16 21:10:09 +000037 if ($params != '')
38 {
39 $active_group = $params;
40 }
41
Derek Jones0b59f272008-05-13 04:22:33 +000042 if ( ! isset($active_group) OR ! isset($db[$active_group]))
Derek Allard39b622d2008-01-16 21:10:09 +000043 {
44 show_error('You have specified an invalid database connection group.');
45 }
46
Derek Allardf65308f2008-08-21 23:11:23 +000047 $params = $db[$active_group];
48 }
Derek Jones63eac3e2008-02-14 20:23:37 +000049 elseif (is_string($params))
Derek Jones7dd38382008-02-13 04:52:58 +000050 {
51
52 /* parse the URL from the DSN string
53 * Database settings can be passed as discreet
54 * parameters or as a data source name in the first
55 * parameter. DSNs must have this prototype:
56 * $dsn = 'driver://username:password@hostname/database';
57 */
58
59 if (($dns = @parse_url($params)) === FALSE)
60 {
61 show_error('Invalid DB Connection String');
62 }
63
64 $params = array(
65 'dbdriver' => $dns['scheme'],
66 'hostname' => (isset($dns['host'])) ? rawurldecode($dns['host']) : '',
67 'username' => (isset($dns['user'])) ? rawurldecode($dns['user']) : '',
68 'password' => (isset($dns['pass'])) ? rawurldecode($dns['pass']) : '',
Derek Jones97bc0102008-05-14 15:01:50 +000069 'database' => (isset($dns['path'])) ? rawurldecode(substr($dns['path'], 1)) : ''
Derek Jones7dd38382008-02-13 04:52:58 +000070 );
Derek Jones97bc0102008-05-14 15:01:50 +000071
72 // were additional config items set?
73 if (isset($dns['query']))
74 {
75 parse_str($dns['query'], $extra);
76
77 foreach($extra as $key => $val)
78 {
79 // booleans please
80 if (strtoupper($val) == "TRUE")
81 {
82 $val = TRUE;
83 }
84 elseif (strtoupper($val) == "FALSE")
85 {
86 $val = FALSE;
87 }
88
89 $params[$key] = $val;
90 }
91 }
Derek Jones7dd38382008-02-13 04:52:58 +000092 }
Derek Jones97bc0102008-05-14 15:01:50 +000093
Derek Allardd2df9bc2007-04-15 17:41:17 +000094 // No DB specified yet? Beat them senseless...
Derek Jones0b59f272008-05-13 04:22:33 +000095 if ( ! isset($params['dbdriver']) OR $params['dbdriver'] == '')
Derek Allardd2df9bc2007-04-15 17:41:17 +000096 {
97 show_error('You have not selected a database type to connect to.');
98 }
99
100 // Load the DB classes. Note: Since the active record class is optional
101 // we need to dynamically create a class that extends proper parent class
102 // based on whether we're using the active record class or not.
103 // Kudos to Paul for discovering this clever use of eval()
104
Derek Jones75d568d2008-01-30 20:26:25 +0000105 if ($active_record_override == TRUE)
Derek Allardd2df9bc2007-04-15 17:41:17 +0000106 {
Derek Jones75d568d2008-01-30 20:26:25 +0000107 $active_record = TRUE;
Derek Allardd2df9bc2007-04-15 17:41:17 +0000108 }
109
110 require_once(BASEPATH.'database/DB_driver'.EXT);
111
Derek Jones0b59f272008-05-13 04:22:33 +0000112 if ( ! isset($active_record) OR $active_record == TRUE)
Derek Allardd2df9bc2007-04-15 17:41:17 +0000113 {
114 require_once(BASEPATH.'database/DB_active_rec'.EXT);
115
Derek Jones0b59f272008-05-13 04:22:33 +0000116 if ( ! class_exists('CI_DB'))
Derek Allardd2df9bc2007-04-15 17:41:17 +0000117 {
118 eval('class CI_DB extends CI_DB_active_record { }');
119 }
120 }
121 else
122 {
Derek Jones0b59f272008-05-13 04:22:33 +0000123 if ( ! class_exists('CI_DB'))
Derek Allardd2df9bc2007-04-15 17:41:17 +0000124 {
125 eval('class CI_DB extends CI_DB_driver { }');
126 }
127 }
128
129 require_once(BASEPATH.'database/drivers/'.$params['dbdriver'].'/'.$params['dbdriver'].'_driver'.EXT);
130
131 // Instantiate the DB adapter
132 $driver = 'CI_DB_'.$params['dbdriver'].'_driver';
Derek Allard39b622d2008-01-16 21:10:09 +0000133 $DB =& new $driver($params);
134
135 if ($DB->autoinit == TRUE)
136 {
137 $DB->initialize();
138 }
139
Derek Allardd2df9bc2007-04-15 17:41:17 +0000140 return $DB;
141}
142
143
Derek Jones0b59f272008-05-13 04:22:33 +0000144
145/* End of file DB.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000146/* Location: ./system/database/DB.php */