Subject [IBO] Re: TIB_Query Programatically Defined SQL with Strings
Author jrodenhi
Thank you, Helen. That was news to me. Any chance you could give me
any advice on the string literal problem from my posting?

Thanks again.
-Jack

--- In IBObjects@yahoogroups.com, Helen Borrie <helebor@t...> wrote:
> The only time case sensitivity matters is when you actually
**define** the
> objects with quoted identifiers. This would have made my
identifiers
> case-sensitive:
>
> create table "ATable" (
> "id" integer,
> "data" varchar(40));
>
> There seems to be a lot of confusion around this, partly caused by
some
> third-party tools that force you to use double-quotes for
everything. You
> don't have this problem with IB_SQL.
>
> Helen