G
goo
Guest
def var lc as longchar no-undo. fix-codepage(lc)='UTF-8'. find first Table where....... lc = buffer Table::clobField. gives an error like this: Invalid character code found in data for codepage UTF-8 (12008) (How to find what character that is wrong?) if I instead does this: copy-lob object buffer table::clobField to file './test.xml' no-convert. copy-lob file './test.xml' to object lc. this works swell.... Could someone explain that? I believe I should be able to do this: I have a file with UTF-8 and I should be able to load that into a longchar set to fix-codepage with UTF-8 using copy-lob file 'xxx.xml' to object lc. or I should be able to do like this: copy-lob file 'xxx.xml' to object lc convert source codepage 'iso8859-1' target codepage 'UTF-8'. //Geir Otto
Continue reading...
Continue reading...