Final Class yii\db\oci\LobValue
| Inheritance | yii\ |
|---|---|
| Implements | yii\ |
| Available since version | 22.0 |
| Source Code | https://github.com/yiisoft/yii2/blob/master/framework/db/oci/LobValue.php |
Represents an Oracle BLOB value bound through a PDO LOB locator.
{@see \EMPTY_BLOB() and registers the payload for locator binding by {@see \
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | yii\ |
|
| getColumnName() | Returns the unquoted target column name. | yii\ |
| getValue() | yii\ |
Method Details
| public mixed __construct ( string $columnName, string|resource $value ) | ||
| $columnName | string | |
| $value | string|resource |
Binary payload. |
public function __construct(private string $columnName, private $value)
{
}
Returns the unquoted target column name.
| public string getColumnName ( ) |
public function getColumnName(): string
{
return $this->columnName;
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.