Final Class yii\db\PdoValue

Inheritanceyii\db\PdoValue
Implementsyii\db\ExpressionInterface
Available since version2.0.14
Source Code https://github.com/yiisoft/yii2/blob/master/framework/db/PdoValue.php

Class PdoValue represents a $value that should be bound to PDO with exact $type.

For example, it will be useful when you need to bind binary data to BLOB column in DBMS:

[':name' => 'John', ':profile' => new PdoValue($profile, \PDO::PARAM_LOB)]`.

To see possible types, check PDO::PARAM_* constants.

See also https://secure.php.net/manual/en/pdostatement.bindparam.php.

Public Methods

Hide inherited methods

MethodDescriptionDefined By
__construct() PdoValue constructor. yii\db\PdoValue
getType() yii\db\PdoValue
getValue() yii\db\PdoValue

Method Details

__construct() public method

PdoValue constructor.

public void __construct ( $value, $type )
$value
$type
getType() public method

public integer getType ( )
getValue() public method

public mixed getValue ( )