Hello I found a small bug in DBDatabaseDriverDerby. The phrase for obtaining the current date-time is specified as "NOW()". The Derby doc says to use CURRENT_TIMESTAMP. I have tried this a minute ago and it worked for me.
DBDatabaseDriverDerby (195): -case SQL_CURRENT_DATETIME: return "NOW()"; +case SQL_CURRENT_DATETIME: return "CURRENT_TIMESTAMP"; Best Regards Eike
