Subject | Re: [ib-support] oracle-like "dual" quasi table |
---|---|
Author | Martijn Tonies |
Post date | 2002-07-29T15:51:40Z |
Hi,
Most people use RDB$DATABASE - but you can also create a
table DUAL yourself.
CREATE TABLE DUAL (DUMMY(CHAR(1));
COMMIT;
INSERT INTO DUAL VALUES ('X');
COMMIT;
InterBase Workbench - the developer tool for InterBase and Firebird
http://www.interbaseworkbench.com
Upscene Productions
http://www.upscene.com
"This is an object-oriented system.
If we change anything, the users object."
Most people use RDB$DATABASE - but you can also create a
table DUAL yourself.
CREATE TABLE DUAL (DUMMY(CHAR(1));
COMMIT;
INSERT INTO DUAL VALUES ('X');
COMMIT;
> I'd like to know if there is something like oracle's "dual" quasi-table inMartijn Tonies
> interbase/firebird?
> Thank you very much for any response.
InterBase Workbench - the developer tool for InterBase and Firebird
http://www.interbaseworkbench.com
Upscene Productions
http://www.upscene.com
"This is an object-oriented system.
If we change anything, the users object."