Is there a way to prevent H2 from uppercasing table and column names as they
are created?
  CREATE TABLE foo(id int);

creates table FOO, with column ID.

  CREATE TABLE "foo"(id int);

creates table foo, with column ID.  When quoting like that, every use of the
identifier will then need to be delimited in the SQL. Shouldn't the case
remain the same by default?

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to