Re: hebrew and postgre

From: Marc Lavergne <mlavergne-pub(at)richlava(dot)com>
To: shayb52(at)bezeqint(dot)net
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: hebrew and postgre
Date: 2002-02-27 07:10:21
Message-ID: 3C7C865D.3090609@richlava.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

It could be a million things, my stab at the obvious is are you sure
this is the table you want? Could it be that you want the following?:

...
... select * from pg_user where usename = ...
...
... rs.getString("usename") ...
...

I've used PG 7.2.0 with JBoss and it works fine, so it's very likely
something specific to your application.

Marc

Shay wrote:

> hello,
>
> i am trying to write and read from and to postgre,
> i am able to do this through PG Explorer, but when i try this code through
> JDBC and Jboss it failes:
>
> java.sql.Statement st = connection.createStatement();
> java.sql.ResultSet rs = st.executeQuery("SELECT * FROM users where
> name='hebrew letters here'");
> while(rs.next()) {
> System.out.print("Column 1 returned ");
> System.out.println(rs.getString("name"));
> }
> rs.close();
> st.close();
>
> for some reason the result set is empty altough the PG Explorer can find it
>
> can you help?
>
> thanks ahead,
> Shay.
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
>
>

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Chantal Ackermann 2002-02-27 12:33:57 Multibyte or not?
Previous Message Marc Lavergne 2002-02-27 07:01:27 Re: Blob support...