Subject | Re: [firebird-support] Table names in Upper caps |
---|---|
Author | Helen Borrie |
Post date | 2003-10-01T02:17:08Z |
At 10:50 PM 30/09/2003 -0300, you wrote:
them in double quotes, e.g.
CREATE TABLE "Places" (
"Place_ID" BigInt NOT NULL,
"Field1" varchar(10),
...);
Thereafter, in application code, you need to include the d/quotes
everywhere you refer to the objects, e.g. (Pascal examples):
MyQuery.SQL.Add('SELECT "Place_ID", "Field1", ...) FROM "Places"
WHERE "Place_ID" = :Place_ID');
heLen
>Hi,If you want to have case-sensitive identifiers in Firebird, you can enclose
>
> I´m just starting in this Firebird stuff, and this is the problem
> that I get.
>
> Well, I´m migrating an existent system (made using ADO) to Firebird.
> The problem is: in this system, the table names are not in upper case,
> but when I make the conversion (using Data Pump, wich comes with Delphi
> 7) all these tables are converted with their names in Upper case and the
> system simply doesn´t recognize those tables.
> Is there any way to convert these tables and also the way their names
> were typed (i.e. Insted of creating those tables like Places > PLACES,
> Places > Places)?
them in double quotes, e.g.
CREATE TABLE "Places" (
"Place_ID" BigInt NOT NULL,
"Field1" varchar(10),
...);
Thereafter, in application code, you need to include the d/quotes
everywhere you refer to the objects, e.g. (Pascal examples):
MyQuery.SQL.Add('SELECT "Place_ID", "Field1", ...) FROM "Places"
WHERE "Place_ID" = :Place_ID');
heLen