Subject RE: [IBO] TableName case sensitivity
Author Jason Wharton
I think I understand better and I'll look into this and fix it if it is a
problem, which it surely looks like it is.

Jason Wharton
www.ibobjects.com


> -----Original Message-----
> From: Robert Osowiecki [mailto:robson@...]
> Sent: Tuesday, April 05, 2005 9:41 AM
> To: IBObjects@yahoogroups.com
> Subject: Re: [IBO] TableName case sensitivity
>
>
>
> 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.