mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
DB의 character set이 UTF8일때 char 타입의 데이터에 빈칸이 생기는 문제점 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6158 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
9829f7c539
commit
e5ddc1d7a0
1 changed files with 3 additions and 0 deletions
|
|
@ -338,6 +338,9 @@
|
|||
$tmp->{$key} = ibase_blob_get($blob_hndl, $blob_data[0]);
|
||||
ibase_blob_close($blob_hndl);
|
||||
}
|
||||
else if($type == "char") {
|
||||
$tmp->{$key} = trim($tmp->{$key}); // DB의 character set이 UTF8일때 생기는 빈칸을 제거
|
||||
}
|
||||
}
|
||||
|
||||
$return[] = $tmp;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue