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 */
17 class JDatabaseQuerySqlazure extends JDatabaseQuerySqlsrv
18 {
19 /**
20 * The character(s) used to quote SQL statement names such as table names or field names,
21 * etc. The child classes should define this as necessary. If a single character string the
22 * same character is used for both sides of the quoted name, else the first character will be
23 * used for the opening quote and the second for the closing quote.
24 *
25 * @var string
26 *
27 * @since 11.1
28 */
29 protected $name_quotes = '';
30 }
31