On 1/2/06, Legolas Woodland <[EMAIL PROTECTED]> wrote: > Thank you for reading my post. > what type i should use instead of boolean in derby ? > should i use tinyint / small int for this purpose ?
Yep, ResultSet.getBoolean/setBoolean work just fine with these types, so in your Java code you can use these types as if the type were BOOLEAN/BIT. > and , which one of timeStamp and Date is easier to manipulate (i want > just to hold DATE) ? I'd say, use DATE, it takes less space and should fulfill your needs if you only want to store dates. Tom
