Is there a way to simulate VARCHAR2 datatype of other database systems?
You can emulate almost any database using domains. Varchars are a little bit tricky as they can have variable number of characters, but you can name your domains like that using quoted identifiers. Example:
CREATE DOMAIN "VARCHAR2(1)" AS VARCHAR(1);
Later, in table definition, you would use something like:
CREATE TABLE t1 (
x INTEGER,
c "VARCHAR2(1)"
);
As you can see, you must use quotes everywhere as '(' and ')' characters are reserved.
Do you find this FAQ incorrect or incomplete? Please e-mail us what
needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird
databases), before it enters the main FAQ database. If you desire so, the
changes will be credited to your name. To learn more, visit our add content page.
All contents are copyright © 2007-2024 FirebirdFAQ.org unless otherwise stated in the text.