Hello,
I really need to know how to use a default value in a sql/4gl statement. With dbaccess I can do:
CREATE TABLE table_name (
Col1 smallint NOT NULL DEFAULT 10 ,
Col2 char(10) );
But when in a 4gl prog. the compiler crash and say error 4373 like this :
Col1 smallint NOT NULL DEFAULT 10
---------------------------------^
error 4373 ....
Is there a solution to use DEFAULT in sql\4gl statement.
Thank you very much !!
I really need to know how to use a default value in a sql/4gl statement. With dbaccess I can do:
CREATE TABLE table_name (
Col1 smallint NOT NULL DEFAULT 10 ,
Col2 char(10) );
But when in a 4gl prog. the compiler crash and say error 4373 like this :
Col1 smallint NOT NULL DEFAULT 10
---------------------------------^
error 4373 ....
Is there a solution to use DEFAULT in sql\4gl statement.
Thank you very much !!