1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24:
<?php
/**
* icms_db_IConnection interface definition
*
* @category ICMS
* @package Database
* @subpackage Connection
*
* @copyright The ImpressCMS Project <http://www.impresscms.org>
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License (GPL)
* @version SVN: $Id$
*/
/**
* Interface for database adapters.
*
* All the methods in this class are PDO methods, with the exception of escape, which is a legacy method
*
* @since 1.4
*/
interface icms_db_IConnection {
}