From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Hunter Hillegas <lists(at)lastonepicked(dot)com> |
Cc: | Postgre JDBC <pgsql-jdbc(at)postgresql(dot)org> |
Subject: | Re: A Bug Fix - Is this a real bug? Has this already been fixed? |
Date: | 2001-05-08 00:10:39 |
Message-ID: | 200105080010.f480AdE13517@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-jdbc |
We don't have this patch in our sources. I will find out if it is
needed.
> Saw this on a EJB list I'm on...
>
> Does anyone know if this is in fact an error and if the driver needs to be
> updated?
>
> Hunter
>
> ------ Forwarded Message
> From: Christofer Sandberg <csadev(at)propacta(dot)se>
> Reply-To: jboss-user(at)lists(dot)sourceforge(dot)net
> Date: 20 Apr 2001 00:00:01 +0200
> To: jboss-user(at)lists(dot)sourceforge(dot)net
> Subject: Re: [JBoss-user] CMP Postgres and Booleans
>
> I had this problem aswell, and i belive that the postgres
> JDBC2 driver is to blame.
>
> A quick fix to the problem is to edit the ResultSet.java file
> in the Postgres driver source.
>
> Change the line:
> return ((c == 't') || (c == 'T'));
> int the getBoolean function on line 184:ish to:
> return ((c == 't') || (c == 'T') (c == '1'));
>
>
> This solved the problem for me... thank god for OpenSource.
>
> </christofer>
>
> On 09 Apr 2001 12:00:14 -0700, Philip Craven wrote:
> > I have a CMP bean that has a boolean variable. Before
> > jboss is started, the value in the postgres database
> > is 1 (true), after I start postgres and the bean is
> > loaded, the value goes to false, and the database is
> > updated to reflect this. What do I have
> > misconfigured?
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>
--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From | Date | Subject | |
---|---|---|---|
Next Message | Joseph Shraibman | 2001-05-08 00:59:42 | Re: [GENERAL] A different compile problem for 7.1.1 |
Previous Message | Joseph Shraibman | 2001-05-08 00:06:27 | Re: 'current' timestamp chokes jdbc driver |