mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-18 09:52:17 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7278 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
68f3ea0725
commit
06da98e3ed
1 changed files with 3 additions and 3 deletions
|
|
@ -317,7 +317,7 @@
|
|||
/**
|
||||
* @brief 결과를 fetch
|
||||
**/
|
||||
function _fetch($result, $output) {
|
||||
function _fetch($result, $output = null) {
|
||||
if(!$this->isConnected() || $this->isError() || !$result) return;
|
||||
|
||||
while($tmp = ibase_fetch_object($result)) {
|
||||
|
|
@ -340,7 +340,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
if($type == "text" || $type == "bigtext") {
|
||||
if(($type == "text" || $type == "bigtext") && $tmp->{$key}) {
|
||||
$blob_data = ibase_blob_info($tmp->{$key});
|
||||
$blob_hndl = ibase_blob_open($tmp->{$key});
|
||||
$tmp->{$key} = ibase_blob_get($blob_hndl, $blob_data[0]);
|
||||
|
|
@ -1007,7 +1007,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
if($type == "text" || $type == "bigtext") {
|
||||
if(($type == "text" || $type == "bigtext") && $tmp->{$key}) {
|
||||
$blob_data = ibase_blob_info($tmp->{$key});
|
||||
$blob_hndl = ibase_blob_open($tmp->{$key});
|
||||
$tmp->{$key} = ibase_blob_get($blob_hndl, $blob_data[0]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue