- 論壇徽章:
- 0
|
用4GL設(shè)計數(shù)據(jù)庫的問題?
原帖由 "大夢" 發(fā)表:
你搞錯了!
main
create database test
create table qry_oclk
(
branch_no varchar(6) not null,
oclk_code varchar( not null,
oclk_name varcha..........
大夢,我用c4gl test.4gl -o test執(zhí)行以上代碼,生成test.err文件如下:
main
create database test
create table qry_oclk
(
branch_no varchar(6) not null,
oclk_code varchar(2) not null,
oclk_name varchar( not null,
oclk_pass varchar(6) not null,
primary key (branch_no,oclk_code) constraint pk_qry_oclk
|________^
|
| A grammatical error has been found on line 9, character 12.
| The construct is not understandable in its context.
| See error number -4373.
|________^
|
| A grammatical error has been found on line 9, character 12.
| The construct is not understandable in its context.
| See error number -4373.
|__________________^
|
| A grammatical error has been found on line 9, character 23.
| The construct is not understandable in its context.
| See error number -4373.
);
end main |
|