mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 18:33:39 +01:00
docu update
This commit is contained in:
parent
82042ee06c
commit
8a3f253076
@ -1,16 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* eGroupWare API: Database abstraction library
|
||||
* EGroupware API: Database abstraction library
|
||||
*
|
||||
* @link http://www.egroupware.org
|
||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||
* @package api
|
||||
* @subpackage db
|
||||
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @copyright (c) 2003-10 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @copyright (c) 2003-12 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
if(empty($GLOBALS['egw_info']['server']['db_type']))
|
||||
{
|
||||
$GLOBALS['egw_info']['server']['db_type'] = 'mysql';
|
||||
}
|
||||
include_once(EGW_API_INC.'/adodb/adodb.inc.php');
|
||||
|
||||
/**
|
||||
* Database abstraction library
|
||||
*
|
||||
@ -45,13 +51,6 @@
|
||||
* echo "Connection to DB failed (".$e->getMessage().")!\n";
|
||||
* }
|
||||
*/
|
||||
|
||||
if(empty($GLOBALS['egw_info']['server']['db_type']))
|
||||
{
|
||||
$GLOBALS['egw_info']['server']['db_type'] = 'mysql';
|
||||
}
|
||||
include_once(EGW_API_INC.'/adodb/adodb.inc.php');
|
||||
|
||||
class egw_db
|
||||
{
|
||||
/**
|
||||
@ -103,11 +102,6 @@ class egw_db
|
||||
*/
|
||||
var $Password = '';
|
||||
|
||||
/**
|
||||
* @var int $Auto_Free automatically free results - 0 no, 1 yes
|
||||
*/
|
||||
var $Auto_Free = 0;
|
||||
|
||||
/**
|
||||
* @var int $Debug enable debuging - 0 no, 1 yes
|
||||
*/
|
||||
@ -146,9 +140,6 @@ class egw_db
|
||||
*/
|
||||
var $query_log;
|
||||
|
||||
//i am not documenting private vars - skwashd :)
|
||||
var $xmlrpc = False;
|
||||
var $soap = False;
|
||||
/**
|
||||
* ADOdb connection
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user