PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
libraries
/
joomla
/
database
/
query
<?php /** * @package Joomla.Platform * @subpackage Database * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * PDO Query Building Class. * * @since 3.0.0 */ class JDatabaseQueryPdo extends JDatabaseQuery { /** * Casts a value to a char. * * Ensure that the value is properly quoted before passing to the method. * * Usage: * $query->select($query->castAsChar('a')); * $query->select($query->castAsChar('a', 40)); * * @param string $value The value to cast as a char. * * @param string $len The lenght of the char. * * @return string Returns the cast value. * * @since 1.7.0 */ public function castAsChar($value, $len = null) { if (!$len) { return $value; } else { return ' CAST(' . $value . ' AS CHAR(' . $len . '))'; } } }
[+]
..
[-] element.php
[edit]
[-] index.html
[edit]
[-] limitable.php
[edit]
[-] mysql.php
[edit]
[-] mysqli.php
[edit]
[-] oracle.php
[edit]
[-] pdo.php
[edit]
[-] pdomysql.php
[edit]
[-] pgsql.php
[edit]
[-] postgresql.php
[edit]
[-] preparable.php
[edit]
[-] sqlazure.php
[edit]
[-] sqlite.php
[edit]
[-] sqlsrv.php
[edit]
[-] .htaccess.disabled
[edit]