> > > +# The "boolean" data type might be more appropriat here > > +# http://www.postgresql.org/idocs/index.php?datatype-boolean.html > > BOOLEANCHAR = char > > BOOLEANINT = int2 >
The purpose of the BOOLEANCHAR and BOOLEANINT types is to convert a CHAR or INT type column to a boolean java type. Therefore boolean is not appropriate here. If you have the database column defined as a BIT it should be mapped to boolean as well, though that is unrelated to the two previous types. On Mon, 2002-05-06 at 14:47, James A. Hillyerd wrote: > PostgreSQL's Boolean does not work as a boolean character, I've tried > it. > > Really we should have BIT = boolean, but I haven't tested it yet. I'm > waiting for a village Value that supports BooleanObj. This should be in the latest cvs of village. If you have a use for it i would say you should use the latest village. john mcnally -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
