How do i store unicodes entered through java into a table in oracle

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shalinianthony
    New Member
    • Mar 2008
    • 4

    #1

    How do i store unicodes entered through java into a table in oracle

    This is the unicode for chinese:
    I've used java.

    Code:
    String code="\u6B22 ";
    String code1="\u8FCE";
    String code2="\u4F7F";
    Assuming that these three strings together make up a word in chinese and now i need to store all these together in a single field(as one word) in the oracle table.
    How do i do that??
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by shalinianthony
    This is the unicode for chinese:
    I've used java.

    Code:
    String code="\u6B22 ";
    String code1="\u8FCE";
    String code2="\u4F7F";
    Assuming that these three strings together make up a word in chinese and now i need to store all these together in a single field(as one word) in the oracle table.
    How do i do that??
    If you can store Strings in Oracle I'm sure you can store code+code1+code 2.

    kind regards,

    Jos

    Comment

    Working...