Hi all,
In MySQL I can easily set the default value of a timestamp field to be the current time
fieldname timestamp not null default current_timestamp
Does anyone know how to do the same thing in java derby?
Hi all,
In MySQL I can easily set the default value of a timestamp field to be the current time
fieldname timestamp not null default current_timestamp
Does anyone know how to do the same thing in java derby?
This should work fieldname TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP