Subject Re: [IBO] TableName case sensitivity
Author Robert Osowiecki
Jason Wharton wrote:

>You control case sensitivity when you use double quotes around your
>identifier names. If you don't use double quotes then it will treat them as
>uppercase.
>
>

I'll make myself more clear. This code:

Table->TableName = "Timestamps",
if (!Table->Exists)
Table->CreateTable();

fails because table exists, but Exists property is false. But when I run:

Table->TableName = "TIMESTAMPS",
if (!Table->Exists)
Table->CreateTable();

everything goes OK. I don't put any quotes in table name, they are just
string delimiters here. :)

Cheers,

Robson.