Prado\Data\TDbDataReader::bindColumn PHP Метод

bindColumn() публичный Метод

When rows of data are being fetched, the corresponding column value will be set in the variable. Note, the fetch mode must include PDO::FETCH_BOUND.
См. также: http://www.php.net/manual/en/function.PDOStatement-bindColumn.php
public bindColumn ( $column, &$value, $dataType = null )
    public function bindColumn($column, &$value, $dataType = null)
    {
        if ($dataType === null) {
            $this->_statement->bindColumn($column, $value);
        } else {
            $this->_statement->bindColumn($column, $value, $dataType);
        }
    }