Subject | Re: Character set in url |
---|---|
Author | Roman Rokytskyy <rrokytskyy@acm.org> |
Post date | 2003-02-06T10:36:40Z |
> My problem is that like so many other tools it simply usesYes, this feature is supported. Any isc_dpb_* parameter from FB API
> DriverManager.getConnection(url, user, password) so I cannot pass
> the character set in a properties object.
>
> I vaguely remember a discussion about supporting the lc_type in the
> url to get around this problem. Did anything happen about that? I
> looked in the source and could see no tests of a character set
> passed as part of the url.
can be passed in URL using standard notation:
jdbc:....mydb.gdb?lc_ctype=UNICODE_FSS&...
When using XML configuration files pay attention that & should be
written as &, so actually URL will look like this:
<param>
<name>url</name>
<value>jdbc:....mydb.gdb?lc_ctype=UNICODE_FSS&...</value>
</param>
Best regards,
Roman Rokytskyy