> Would it be possible in the future to have better granularity on these
> ambiguities?
You are right, I will add a system property to set the default
behavior in the next release.
> Also, any reason why H2 in its default setting does not strive to be
> ANSI SQL compliant?
I didn't know this is the ANSI standard. I will change the default in
version 1.2 (should be beta in about one month). Please tell me if you
find other things that are not ANSI-compliant.
Regards,
Thomas
>> You are right, I will add a system property to set the default
>> behavior in the next release.
There is now http://www.h2database.com/javadoc/org/h2/constant/SysProperties.html#h2.nullConcatIsNull
> Also of interest would be system property (properties?) for the
> various ways to produce generated keys. I need generated columns that
> are part of the PK, which does not work with IDENTITY, because it
> assumes it is the PK.
Then use AUTOINCREMENT, or create a sequence and use it as the DEFAULT
clause in the column. I don't see how a system property would help
here.
Regards,
Thomas