Subject | Re: [Firebird-Java] GDSException |
---|---|
Author | urswagner@bluemail.ch |
Post date | 2004-01-31T21:26:02Z |
Perfect!
Thank You very much.
Urs
Thank You very much.
Urs
>-- Original-Nachricht --
>To: <Firebird-Java@yahoogroups.com>
>From: "Rick Fincher" <rnf@...>
>Date: Sat, 31 Jan 2004 15:37:32 -0500
>Subject: Re: [Firebird-Java] GDSException
>Reply-To: Firebird-Java@yahoogroups.com
>
>
>Hi Urs,
>
>Yes, you can add "?lc_ctype=ISO8859_1" to the end of the database URL string
>to get something like:
>
>Connection conn =
>DriverManager.getConnection("jdbc:firebirdsql:localhost/3050:/firebird/test.
>gdb?lc_ctype=ISO8859_1", "sysdba", "masterkey");
>
>Or you can use properties like so:
>
>Properties p = new Properties();
>p.put("user","sysdba");
>p.put("password","masterkey");
>p.put("lc_ctype","ISO8859_1");
>
>Class.forName("org.firebirdsql.jdbc.FBDriver");
>Connection conn =
>DriverManager.getConnection("jdbc:firebirdsql:127.0.0.1/3050:C:\\Database\\d
>bname.gdb",p);
>
>
>Rick
>
>
>
>----- Original Message -----
>
>>
>> Hi Rick
>>
>> I am using a ISO8859_1 database. Can I put this in url connection string?
>> Please tell me the correct specification.
>>
>> Thanks for help.
>>
>> Urs
>
>
>
>
>Yahoo! Groups Links
>
>To visit your group on the web, go to:
> http://groups.yahoo.com/group/Firebird-Java/
>
>To unsubscribe from this group, send an email to:
> Firebird-Java-unsubscribe@yahoogroups.com
>
>Your use of Yahoo! Groups is subject to:
> http://docs.yahoo.com/info/terms/
>
>