/libraries/legacy/database/mysql.php
PHP | 25 lines | 6 code | 3 blank | 16 comment | 0 complexity | 64bb1f60f5e1b7631a03ac04fc3079b5 MD5 | raw file
Possible License(s): LGPL-2.1
1<?php 2/** 3 * @package Joomla.Legacy 4 * @subpackage Database 5 * 6 * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. 7 * @license GNU General Public License version 2 or later; see LICENSE 8 */ 9 10defined('JPATH_PLATFORM') or die; 11 12JLog::add('JDatabaseMysql is deprecated, use JDatabaseDriverMysql instead.', JLog::WARNING, 'deprecated'); 13 14/** 15 * MySQL database driver 16 * 17 * @package Joomla.Legacy 18 * @subpackage Database 19 * @see http://dev.mysql.com/doc/ 20 * @since 11.1 21 * @deprecated 13.1 Use JDatabaseDriverMysql instead. 22 */ 23class JDatabaseMysql extends JDatabaseDriverMysql 24{ 25}