<[EMAIL PROTECTED]> wrote: > > I am not aware of a BOOLEAN type. > The types defined in the website are: NULL, INTEGER, REAL, TEXT and BLOB. > Is BOOLEAN a hidden type? >
BOOLEAN is not a different type. What Dennis meant was that integer values 0 and 1 are stored more efficiently in the new format - 1 byte instead of 2. The integer values 0 and 1 are commonly used as booleans, so we use the term "boolean type" in conversation, though in truth a boolean is really just an integer. -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------