*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 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.

Reply via email to