1 <?php
2 /**
3 * @package FrameworkOnFramework
4 * @subpackage database
5 * @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE.txt
7 *
8 * This file is adapted from the Joomla! Platform. It is used to iterate a database cursor returning FOFTable objects
9 * instead of plain stdClass objects
10 */
11
12 // Protect from unauthorized access
13 defined('FOF_INCLUDED') or die;
14
15 /**
16 * Query Building Class.
17 *
18 * @since 11.1
19 */
20 class FOFDatabaseQuerySqlazure extends FOFDatabaseQuerySqlsrv
21 {
22 /**
23 * The character(s) used to quote SQL statement names such as table names or field names,
24 * etc. The child classes should define this as necessary. If a single character string the
25 * same character is used for both sides of the quoted name, else the first character will be
26 * used for the opening quote and the second for the closing quote.
27 *
28 * @var string
29 *
30 * @since 11.1
31 */
32 protected $name_quotes = '';
33 }
34