I have tried out Turbine (20001105) and I run into problem with the object
interface (peer) to postgres.
Postgres returns columnNames in lowercase and when Turbine has defined these
same names in  uppercase. The bug is when Turbine is trying to match these
strings throw a Hashtable.  One fix to the problem is  to do as described
below:

TurbineUserPeer.java replace line:
tempHash.put( columnNames[j], obj2 );
with:
tempHash.put( columnNames[j].toUpperCase(), obj2 );

----------------------------------------------------------------------------
----
Vidar Vevik                              Vevik Teknologi AS
Sivilingeni�r                             Langerudsvingen 5C
Tlf: 22717144                          1187 Oslo
E-mail: [EMAIL PROTECTED]



------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to