Source for file sqlazure.php

Documentation is available at sqlazure.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Platform
  4.  * @subpackage  Database
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 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.  * @package     Joomla.Platform
  16.  * @subpackage  Database
  17.  * @since       11.1
  18.  */
  19. {
  20.     /**
  21.      * The character(s) used to quote SQL statement names such as table names or field names,
  22.      * etc.  The child classes should define this as necessary.  If a single character string the
  23.      * same character is used for both sides of the quoted name, else the first character will be
  24.      * used for the opening quote and the second for the closing quote.
  25.      *
  26.      * @var    string 
  27.      *
  28.      * @since  11.1
  29.      */
  30.     protected $name_quotes = '';
  31. }

Documentation generated on Tue, 19 Nov 2013 15:14:05 +0100 by phpDocumentor 1.4.3