RE: JDBC and Unicode problem

Поиск
Список
Период
Сортировка
От Zeljko Trogrlic
Тема RE: JDBC and Unicode problem
Дата
Msg-id 4.1.20000906132541.01a2f678@pop.tel.hr
обсуждение исходный текст
Ответ на JDBC and Unicode problem  (Zeljko Trogrlic <zeljko@technologist.com>)
Список pgsql-interfaces
Which parameter? Servlet or applet don't have to know anything about encoding.

But if you want to pass parameter from servlet/applet to driver, connection
properties would be a good place. Interbase use such approach. Interbase
example:

properties.put("user", "SYSDBA");
properties.put("password", "masterkey");
properties.put("charSet", "UTF8");
DriverManager.getConnection("jdbc:interbase://192.168.0.200/root/AIR.GDB",
properties);

At 10:01 6.9.2000 , Peter Mount wrote:
>It isn't a bug as such as I've never implemented unicode.
>
>However, your solution looks like a good one, but I'm not sure how you would
>pass that parameter to either an applet or a servlet.
>
>There's a lot of factors here, which cause JDBC to suffer. Because of the
>sheer amount of email I see (about 200 a day each at work and at home), I
>tend to read only emails that say "JDBC" in the subject line. However, this
>means that a lot of the time I miss out on emails saying that something has
>changed (eg: getTimestamp() fails due to the format changing slightly
>between versions), and I know there's a lot of functionality in 7.0 that
>would improve things but I haven't seen enough examples to actually
>implement them...
>
>Peter


В списке pgsql-interfaces по дате отправления:

Предыдущее
От: Tom Samplonius
Дата:
Сообщение: Row versioning in the ODBC driver...
Следующее
От: Zeljko Trogrlic
Дата:
Сообщение: JDBC source and CVS