| Subject | Re: [ib-support] MONTH | 
|---|---|
| Author | Peter Faulks | 
| Post date | 2002-04-03T17:55:47Z | 
On Wed, 3 Apr 2002 11:35:15 -0600 "Woody" <woody.tmw@...> wrote
[snip]
create table dummy
(
id integer not null;
);
insert into dummy values(1);
Regards
            [snip]
>The newly recommended style is to create a one row table toDon't know about it being 'newly' recommended, I've always done this.
> use for this purpose only and substitute it for RDB$DATABASE.
create table dummy
(
id integer not null;
);
insert into dummy values(1);
Regards