> Can you show how it fails? It works for me.
>
> darcy=> update x set i = null;
> UPDATE 1
> darcy=> select * from x;
> i
> -
Ok... It works for me too...
The problem comes from pgaccess who try to make the update like this:
update x set i = 'null';
In this case, ProstgeSQL says he cannot parse "null".
As i thought pgaccess was using the right way, I did the same error in my
php function...
But it works now !
Thanks a lot...
Olivier.