derby « postgresql « Java Database Q&A





1. What's the equivalent for PostgresSQL 'localtimestamp' in JavaDB - Derby?    stackoverflow.com

Is there something simiar? I have this definition

create table xyz ( 
    fecha_alta timestamp NOT NULL DEFAULT localtimestamp,
    ....
) 
I tried to execute the same in ...