2003-10-05 12:42:07 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2004-08-09 15:46:03 +02:00
|
|
|
* eGroupWare API - database support via ADOdb *
|
2003-10-05 12:42:07 +02:00
|
|
|
* ------------------------------------------------------------------------ *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU Lesser General Public License as published *
|
|
|
|
* by the Free Software Foundation; either version 2.1 of the License, or *
|
|
|
|
* any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2005-06-19 14:43:00 +02:00
|
|
|
require_once(EGW_API_INC.'/class.egw_db.inc.php');
|
|
|
|
|
2003-12-14 17:50:34 +01:00
|
|
|
/*
|
|
|
|
* Database abstraction library
|
|
|
|
*
|
2005-06-19 14:43:00 +02:00
|
|
|
* This is only for compatibility with old code, the DB class is now called egw_db.
|
2003-12-14 17:50:34 +01:00
|
|
|
*
|
|
|
|
* @package phpgwapi
|
|
|
|
* @subpackage db
|
|
|
|
* @author RalfBecker@outdoor-training.de
|
|
|
|
* @license LGPL
|
|
|
|
*/
|
2003-08-28 16:31:11 +02:00
|
|
|
|
2005-06-19 14:43:00 +02:00
|
|
|
class db extends egw_db
|
2005-02-25 08:45:37 +01:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
}
|