Re: Form submission Encoding Problem - saving Japanese text to the database




"boney" <boney.dalwani@xxxxxxxxx> wrote in message news:1157038507.001283.161050@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hello All,

Am a new bie to web programming

am using a servlet to retrieve field values from a web form to save
them to the database

Am able to restrict the end - user to enter information in the japanese
language but the issue is how to transmit non us- ascii charaters to
the server and save them to the databse..what is the standard way of
doing this ?

in short implementing user input in laguage other than english..

Do you know if your DB supports unicode strings? If so, you should probably read the documentation to see how to store and retrieve such strings. If not, then you might want to store the strings as BLOBs, and do the encoding and decoding manually.

- Oliver

.