使用Doctrine将文件另存为BLOB

时间:2012-04-30 14:35:05

标签: php oracle symfony doctrine-orm

我将Symfony2与Doctrine 2.2.2和Oracle数据库一起使用。我想将文件保存为Oracle DB中的BLOB。我为Doctrine编写了一个costum Type来获得BLOB类型。它看起来像这样:

class Blob extends Type
{
const BLOB = 'blob';


public function convertToPHPValue($value, AbstractPlatform $platform)
{
    return (is_resource($value)) ? stream_get_contents($value) : $value;
}

public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
{
    return 'BLOB';
}

public function getBindingType() {
    return \PDO::PARAM_LOB;
}

public function getName()
{
    return self::BLOB;
}
}

保存文件的实体如下:

<?php

class Document
{
/**
 * @var integer $id
 */
private $id;

/**
 * @var file $file
 */
private $file;

/**
 * Get id
 *
 * @return integer 
 */
public function getId()
{
    return $this->id;
}

/**
 * Set file
 *
 * @param blob $file
 */
public function setFile($file)
{
    $this->file = $file;
}

/**
 * Get file
 *
 * @return blob 
 */
public function getFile()
{
    return $this->file;
}
}

当我想使用我的Controller Doctrine保存文件时,只保存在上传文件时将创建的temp-File的路径。

2 个答案:

答案 0 :(得分:1)

$ file变量似乎不是资源。

你可以试试这个:

public function convertToPHPValue($value, AbstractPlatform $platform)
{
    return is_file($value) ? file_get_contents($value) : $value;
}

答案 1 :(得分:1)

似乎是doctrine 2.2中的blob类型,这里是Doctrine \ DBAL \ Types \ BlobType