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:
clench 2009-04-21 08:17:15 +00:00
parent 9829f7c539
commit e5ddc1d7a0

View file

@ -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;