]> git.llucax.com Git - mecon/ai.git/blob - lib/AI/DB.php
Se borran directorios que no se van a usar.
[mecon/ai.git] / lib / AI / DB.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                  AI (Administrador de Intranet)                    |
6 // +--------------------------------------------------------------------+
7 // | This file is part of AI.                                           |
8 // |                                                                    |
9 // | AI is free software; you can redistribute it and/or modify         |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | AI is distributed in the hope that it will be useful, but          |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: Wed Jul 2 17:53:43 2003                                    |
24 // | Autor:  Leandro Lucarella <llucar@mecon.gov.ar>                    |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id$
28 //
29
30 // +X2C includes
31 require_once 'DB.php';
32 // ~X2C
33
34 // +X2C Class 503 :AI_DB
35 /**
36  * Base de datos del Administrador de Intranet.
37  *
38  * @access public
39  */
40 class AI_DB extends DB {
41     // ~X2C
42
43     // +X2C Operation 506
44     /**
45      * @param  string $confFile Archivo de configuracin de la base de datos.
46      *
47      * @return &mixed
48      * @access public
49      */
50     function &connect($confFile) // ~X2C
51     {
52         $conf = parse_ini_file($confFile, true);
53         return DB::connect($conf['dsn'], $conf['opciones']);
54     }
55     // -X2C
56
57     // +X2C Operation 511
58     /**
59      * Verifica si un objeto es un error.
60      *
61      * @param  mixed &$var Variable a chequear si es un error.
62      *
63      * @return bool
64      * @access public
65      */
66     function isError(&$var) // ~X2C
67     {
68         return is_a($var, 'ai_error');
69     }
70     // -X2C
71
72 } // -X2C Class :AI_DB
73
74 ?>