
Using OraSession.Option.Net = true
Server script :
CREATE TABLE ODAC_CLOB
(
CODE NUMBER,
TITLE VARCHAR2(30 BYTE),
VALUE CLOB
)
Application script :
insert into odac_clob(code, title, value)
values(:p_code, :p_title, :p_value)
parambyname(':p_value') := '권성태' <--- korean character
select value from odac_clob
Result :
1Byte Character is correct (ex: English character)
but
2Byte Character is not (ex: Korean character)
how get correct result by korean character?