Subject | Re: [ib-support] Unicode Column |
---|---|
Author | Helen Borrie |
Post date | 2002-12-25T13:18:54Z |
At 01:49 25/12/2002 +0800, you wrote:
INSERT INTO VOTE (Numb, Vote) VALUES ( 1, _UNICODE_FSS ' spécifie' );
heLen
>I want to ask about Unicode problem. I have created Database with Defaulttry
>Character UNICODE_FSS and table Vote :
>
>CREATE TABLE VOTE (
>Numb integer not null,
>Vote varchar(255)
>)
>
>then i am using jsp file as web to insert database :
>
>INSERT INTO VOTE (Numb, Vote) VALUES ( 1, ' spécifie' );
>
>Where in jsp file i have put charset=UTF-8.
>
>Then i open the table, it show value 1 and '??????" ..
INSERT INTO VOTE (Numb, Vote) VALUES ( 1, _UNICODE_FSS ' spécifie' );
heLen