Hi, FYI The following create table statement does not work -
create table public.Data (iden text not null, value text, primary key (iden)); It seems as though h2 doesn't like the "not null" part of the create table statement. Note that this works on an older version (1.0.72) If I execute - create table public.Data (iden text, value text, primary key (iden)); on 1.3.165 it works fine. Cheers -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
