PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
vendor
/
akeeba
/
awf
/
src
/
Database
/
Query
<?php /** * @package awf * @copyright Copyright (c)2014-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 3 or later */ namespace Awf\Database\Query; /** * Query Building Class. * * This class is adapted from the Joomla! Framework */ class Sqlazure extends Sqlsrv { /** * The character(s) used to quote SQL statement names such as table names or field names, * etc. The child classes should define this as necessary. If a single character string the * same character is used for both sides of the quoted name, else the first character will be * used for the opening quote and the second for the closing quote. * * @var string */ protected $name_quotes = ''; }
[+]
..
[-] Sqlsrv.php
[edit]
[-] Pdo.php
[edit]
[-] Pgsql.php
[edit]
[-] Mysqli.php
[edit]
[-] Postgresql.php
[edit]
[-] Sqlazure.php
[edit]
[-] Sqlite.php
[edit]