Subject | Re: [Firebird-Java] Re: Query returning incorrect data |
---|---|
Author | Roman Rokytskyy |
Post date | 2009-01-29T08:49:06Z |
> We use DriverManager.getConnection('our connection string', props),Either remove the last line or use
> where props contains:
> props.put("user", aUsername);
> props.put("password", aPassword);
> props.put("encoding", "UNICODE_FSS");
> props.put("charSet", "UTF8");
props.put("charSet", "UTF-8");
>> select (case when status=1 then _UNICODE_FSS 'Yes' else _UNICODE_FSSSame result or an error?
>> 'No' end) as FlagStr from mytable
>
> Unfortunately that did not work...
Roman