Helo,
I'm just try a patch it seem to correct a littel the problem with
Postgresql..
I'm found that the problem was at first to crete a new user, because
this Hashtable is null at this time...
So, i just put a test this in the BasePeer.java and it's going on..If
the Hastable is null, we do nothing..
I don't know who can use this patch, or if it's correct..
But i'm trying to modify later a new user, to add new role, and so one..
And it seem to work.

Thank to say me if it could be usable by anyone..

Jerome Verleyen



-- 
 Internet, �a rend con et �a abime les yeux.
 Feriez mieux de regarder la t�l�.
 -+- DM in: Guide du Cabaliste Usenet - Quelques �vidences -+-
847,849c847,852
<                 else if ( obj instanceof Hashtable )
<                     rec.setValue( colMap.getColumnName(),
<                                   hashtableToByteArray( (Hashtable)obj ) );
---
>                 else if ( obj instanceof Hashtable ) {
>                   Hashtable hash = (Hashtable)obj;
>                   if ( hash.size() != 0 )  
>                       rec.setValue( colMap.getColumnName(),
>                                     hashtableToByteArray( (Hashtable)obj ) );
>               }

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to