![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/DB/Statement/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\DB\Statement; /** * Magento DB Statement Parameter * * Used to transmit specific information about parameter value binding to be bound the right * way to the query. * Most used properties and methods are defined in interface. Specific things for concrete DB adapter can be * transmitted using 'addtional' property (\Magento\Framework\DataObject) as a container. * * @author Magento Core Team <[email protected]> */ class Parameter { /** * Actual parameter value * * @var mixed */ protected $_value = null; /** * Value is a BLOB. * * A shortcut setting to notify DB adapter, that value must be bound in a default way, as adapter binds * BLOB data to query placeholders. If FALSE, then specific settings from $_dataType, $_length, * $_driverOptions will be used. * @var bool */ protected $_isBlob = false; /** * Data type to set to DB driver during parameter bind * @var mixed */ protected $_dataType = null; /** * Length to set to DB driver during parameter bind * @var mixed */ protected $_length = null; /** * Specific driver options to set to DB driver during parameter bind * @var mixed */ protected $_driverOptions = null; /** * Additional information to be used by DB adapter internally * @var \Magento\Framework\DataObject */ protected $_additional = null; /** * Inits instance * * @param mixed $value */ public function __construct($value) { $this->_value = $value; $this->_additional = new \Magento\Framework\DataObject(); return $this; } /** * Sets parameter value. * * @param mixed $value * @return $this */ public function setValue($value) { $this->_value = $value; return $this; } /** * Gets parameter value. * * @return mixed */ public function getValue() { return $this->_value; } /** * Sets, whether parameter is a BLOB. * * FALSE (default) means, that concrete binding options come in dataType, length and driverOptions properties. * TRUE means that DB adapter must ignore other options and use adapter's default options to bind this parameter * as a BLOB value. * * @param bool $isBlob * @return $this */ public function setIsBlob($isBlob) { $this->_isBlob = $isBlob; return $this; } /** * Gets, whether parameter is a BLOB. * See setIsBlob() for returned value explanation. * * @return bool * * @see setIsBlob * @SuppressWarnings(PHPMD.BooleanGetMethodName) */ public function getIsBlob() { return $this->_isBlob; } /** * Sets data type option to be used during binding parameter value. * * @param mixed $dataType * @return $this */ public function setDataType($dataType) { $this->_dataType = $dataType; return $this; } /** * Gets data type option to be used during binding parameter value. * * @return mixed */ public function getDataType() { return $this->_dataType; } /** * Sets length option to be used during binding parameter value. * * @param mixed $length * @return $this */ public function setLength($length) { $this->_length = $length; return $this; } /** * Gets length option to be used during binding parameter value. * * @return mixed */ public function getLength() { return $this->_length; } /** * Sets specific driver options to be used during binding parameter value. * * @param mixed $driverOptions * @return $this */ public function setDriverOptions($driverOptions) { $this->_driverOptions = $driverOptions; return $this; } /** * Gets driver options to be used during binding parameter value. * * @return mixed */ public function getDriverOptions() { return $this->_driverOptions; } /** * Sets additional information for concrete DB adapter. * Set there any data you want to pass along with query parameter. * * @param \Magento\Framework\DataObject $additional * @return $this */ public function setAdditional($additional) { $this->_additional = $additional; return $this; } /** * Gets additional information for concrete DB adapter. * * @return \Magento\Framework\DataObject */ public function getAdditional() { return $this->_additional; } /** * Returns representation of a object to be used in string contexts * * @return string */ public function __toString() { return (string)$this->_value; } /** * Returns representation of a object to be used in string contexts * * @return string */ public function toString() { return $this->__toString(); } }