Oh, thanks. It didn't don on me to quote the names in the DDL. Darren
> On Nov 19, 2013, at 12:30 PM, Lukas Eder <[email protected]> wrote: > > HSQLDB: > CREATE TABLE T ( > CaseInsensitive INT, > "CaseSensitive" INT > ); > Reported in the INFORMATION_SCHEMA as T.CASEINSENSITIVE, T.CaseSensitive > > PostgreSQL: > > CREATE TABLE T ( > CaseInsensitive INT, > "CaseSensitive" INT > ); > Reported in the information_schema as t.caseinsensitive, t.CaseSensitive > > The point I'm trying to make is that your best choice to get database > agnostic behaviour with respect to casing right is by forcing all DDL to be > case-sensitive through quoting names. > > -- > You received this message because you are subscribed to a topic in the Google > Groups "jOOQ User Group" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/jooq-user/UA2AkO0yFVQ/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
