Hi,

> It looks like the parser uses the quotes (") around the schema name

It's not the parser that "uses" double quotes. It's you that should use
double quotes, or backticks (it doesn't matter which one), if you to use
case sensitive identifiers. Case sensitive identifiers are used in these
cases:

create schema `Test_schema`;
create schema "test_Schema";
create schema "TeSt_ScHemA";
create schema `Test_sCHeMa`;

Because of the double quotes, the identifier is case sensitive, so all of
the above statements will work. If you don't use double quotes, then H2
will convert everything to uppercase.

Regards,
Thomas



On Fri, Jul 11, 2014 at 9:02 AM, Noel Grandin <noelgran...@gmail.com> wrote:

>
>
> On 2014-07-10 10:39 PM, Karl Pietrzak wrote:
>
>>
>> It looks like the parser uses the quotes (") around the schema name, but
>> only if they are straight quotes instead of
>> back-tics (`)?
>>
>>
> Correct.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "H2 Database" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to h2-database+unsubscr...@googlegroups.com.
> To post to this group, send email to h2-database@googlegroups.com.
> Visit this group at http://groups.google.com/group/h2-database.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to h2-database+unsubscr...@googlegroups.com.
To post to this group, send email to h2-database@googlegroups.com.
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.

Reply via email to