我一直试图找到这个问题的解决方案很长一段时间,互联网上无处可寻,我能找到答案。我有这种情况,我需要使用php从firebird数据库插入或更新blob字段(子类型1)。问题是,当文本变得非常大> 36k时,它将不会执行查询。我知道行查询限制为32k的数据,我试图在c#中使用参数化查询,但我无法在PHP中找到适合我的东西。甚至没有接近工作。
我尝试使用ibase_blob_Create
等等,我尝试直接插入Insert into table (blob_value) values (?)
,ibase_prepare
等等。似乎没有什么对我有用。是否有一些神奇的方法可以在php中完成这项工作,或者只是不可能从php中将大文本转换为blob?
我尝试过使用类似的东西:
class DBMgmt_Ibase_Blob extends DBMgmt_Generic_Blob
{
var $blob; // resourse link
var $id;
var $database;
function DBMgmt_Ibase_Blob(&$database, $id=null)
{
$this->database =& $database;
$this->id = $id;
$this->blob = null;
}
function read($len)
{
if ($this->id === false) return ''; // wr-only blob
if (!($e=$this->_firstUse())) {
return $e;
}
$data = @ibase_blob_get($this->blob, $len);
if ($data === false) return $this->_setDbError('read');
return $data;
}
function write($data)
{
if (!($e=$this->_firstUse())) return $e;
$ok = @ibase_blob_add($this->blob, $data);
if ($ok === false) return $this->_setDbError('add data to');
return true;
}
function close()
{
if (!($e=$this->_firstUse())) return $e;
if ($this->blob) {
$id = @ibase_blob_close($this->blob);
if ($id === false) return $this->_setDbError('close');
$this->blob = null;
} else {
$id = null;
}
return $this->id ? $this->id : $id;
}
function length()
{
if ($this->id === false) return 0; // wr-only blob
if (!($e=$this->_firstUse())) return $e;
$info = @ibase_blob_info($this->id);
if (!$info) return $this->_setDbError('get length of');
return $info[0];
}
function _setDbError($query)
{
$hId = $this->id === null ? "null" : ($this->id === false ? "false" : $this->id);
$query = "-- $query BLOB $hId";
$this->database->_setDbError($query);
}
// Called on each blob use (reading or writing).
function _firstUse()
{
// BLOB is opened - nothing to do.
if (is_resource($this->blob)) return true;
// Open or create blob.
if ($this->id !== null) {
$this->blob = @ibase_blob_open($this->id);
if ($this->blob === false) return $this->_setDbError('open');
} else {
$this->blob = @ibase_blob_create($this->database->link);
if ($this->blob === false) return $this->_setDbError('create');
}
return true;
}
}
我用的是这样的:
$text = new DBMgmt_Ibase_Blob($DB);
if (!$text->write(htmlspecialchars($Data["Text"]))){
throw new Exception("blob fail");
}
$blobid = $text->close();
//similar query
$DB->query("INSERT INTO TABLE1 (BLOB_VALUE) VALUES (?)",$blobid);
之后在我的数据库中,我找到一个我知道必须使用的数字:
Blob = new DBMgmt_Ibase_Blob($DB,$data->Text);
$data->Text = $Blob->read($Blob->length());
但是我得到String不是一个BLOB ID,在数据库中有一个数字,如30064771072。
我尝试直接添加它,但当然它不能像这样工作
$DB->query('insert into table (blob) values (?)',$string); // where string is like 170k chars
我收到错误的动态SQL错误SQL错误代码= -104意外的命令结束 - 第1行,第236列
我尝试将其放入php.net引用php.net blob_import之后的文件中,其代码类似于:
$dbh = ibase_connect($host, $username, $password);
$filename = '/tmp/bar';
$fd = fopen($filename, 'r');
if ($fd) {
$blob = ibase_blob_import($dbh, $fd);
fclose($fd);
if (!is_string($blob)) {
// import failed
} else {
$query = "INSERT INTO foo (name, data) VALUES ('$filename', ?)";
$prepared = ibase_prepare($dbh, $query);
if (!ibase_execute($prepared, $blob)) {
// record insertion failed
}
}
} else {
// unable to open
但我仍然得到像blob写法一样的结果。
答案 0 :(得分:0)
您需要使用参数:
$query = ibase_prepare($DB, 'insert into table (blob) values (?)');
ibase_execute($query, $string);