Subject | Re: Unicode Column |
---|---|
Author | netbug21 <netbug21@yahoo.com.hk> |
Post date | 2002-12-25T13:48:27Z |
Using PreparedStatement should solve your problem.
INSERT INTO VOTE (Numb, Vote) VALUES (?, ?)
--- In ib-support@yahoogroups.com, Diko Sastroprawiro
<rsastroprawiro@b...> wrote:
INSERT INTO VOTE (Numb, Vote) VALUES (?, ?)
--- In ib-support@yahoogroups.com, Diko Sastroprawiro
<rsastroprawiro@b...> wrote:
> Dear All,Default
>
> Merry Christmas and Happy New Year,
>
> I want to ask about Unicode problem. I have created Database with
> 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 '??????" ..
>
> Why character "????" showed , this strange, right ?
>
> Can anybody help me , please..