Re: [JBoss-user] CMP Postgres and Booleans

2001-04-19 Thread Christofer Sandberg
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'

Re: [JBoss-user] CMP Postgres and Booleans

2001-04-11 Thread awc
ailto:[EMAIL PROTECTED]]On Behalf Of > [EMAIL PROTECTED] > Sent: Wednesday, April 11, 2001 1:08 AM > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] CMP Postgres and Booleans > > Hi, > > Here we go Rajeev, with top half of the jboss.jcml. > Make sure you started postg

RE: [JBoss-user] CMP Postgres and Booleans

2001-04-11 Thread Rajeev Bacchu
docs for this. thank u, -Rajeev B. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 1:08 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] CMP Postgres and Booleans Hi, Here we go Rajeev, with top half of t

Re: [JBoss-user] CMP Postgres and Booleans

2001-04-10 Thread awc
Hi, Here we go Rajeev, with top half of the jboss.jcml. Make sure you started postgres with -i option on. Check your pg_hba.conf is right. and postgresql.jar in $JBOSS_HOME/lib/ext . jboss will hang if it cannot find postgresql.jar. anil 8083 1098

RE: [JBoss-user] CMP Postgres and Booleans

2001-04-10 Thread Rajeev Bacchu
: [EMAIL PROTECTED] Subject: Re: [JBoss-user] CMP Postgres and Booleans Which version of jboss?? Rajeev Bacchu wrote: > Hi, > > This is a small request for help, I am not able to configure a connection > pool for Postgresql database, _

Re: [JBoss-user] CMP Postgres and Booleans

2001-04-10 Thread awc
Which version of jboss?? Rajeev Bacchu wrote: > Hi, > > This is a small request for help, I am not able to configure a connection > pool for Postgresql database, ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lis

RE: [JBoss-user] CMP Postgres and Booleans

2001-04-10 Thread Rajeev Bacchu
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 12:30 AM To: [EMAIL PROTECTED] Subject: [JBoss-user] CMP Postgres and Booleans I have a CMP bean that has a boolean variable. Before jboss is started, the value

[JBoss-user] CMP Postgres and Booleans

2001-04-09 Thread Philip Craven
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? _