Guest_imported
New member
- Jan 1, 1970
- 0
Powerdesigner 6.0 and 8.0 makes a wrong script-code to access (it dosn't work in access2000 database). Powerdesigner 8.0 makes the following script:
CreateTble C=PERSON N="person"
(
C=ID T=N10 P=No M=No N="id"
);
instead of
create table person
(
id counter(10)
)
Can anybody tell me what I doing wrong?
Thanks
Michael
CreateTble C=PERSON N="person"
(
C=ID T=N10 P=No M=No N="id"
);
instead of
create table person
(
id counter(10)
)
Can anybody tell me what I doing wrong?
Thanks
Michael