1 <?php
 2 /**
 3  * @package     Joomla.Platform
 4  * @subpackage  Database
 5  *
 6  * @copyright   Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
 7  * @license     GNU General Public License version 2 or later; see LICENSE
 8  */
 9 
10 defined('JPATH_PLATFORM') or die;
11 
12 /**
13  * Query Building Class.
14  *
15  * @since       11.1
16  * @deprecated  4.0  Use MySQLi or PDO MySQL instead
17  */
18 class JDatabaseQueryMysql extends JDatabaseQueryMysqli
19 {
20 }
21