Y
youou
Unregistered / Unconfirmed
GUEST, unregistred user!
在D6中:
共有9个项目需要测试,可以根据需要选择是否要测试其中的哪一项:
第1项需要3种数据:
X,Y:integer;
DY:single;
第2,3项需要2种数据:
X,Y:integer;
第4..9项需要1种数据:
DY:single;
其中根据不同的客户有两种不一样的数据量:
客户1:
1,2,3项目分别有6条数据,4..9项目分别有1条数据.
客户2:
1,2,3项目分别有1条数据,4..9项目分别有1条数据.
在数据库中根据客户不同有两个表,这些都是一条记录.!
type
TBuWu=record
x,y:integer;
Bu:single;
end;
TData = record
case ProjType:integer of
1BuWu:TBuWu);
2,3x,y:integer);
4,5,6,7,8,9DY:single);
end;
这样好像不好吧?
共有9个项目需要测试,可以根据需要选择是否要测试其中的哪一项:
第1项需要3种数据:
X,Y:integer;
DY:single;
第2,3项需要2种数据:
X,Y:integer;
第4..9项需要1种数据:
DY:single;
其中根据不同的客户有两种不一样的数据量:
客户1:
1,2,3项目分别有6条数据,4..9项目分别有1条数据.
客户2:
1,2,3项目分别有1条数据,4..9项目分别有1条数据.
在数据库中根据客户不同有两个表,这些都是一条记录.!
type
TBuWu=record
x,y:integer;
Bu:single;
end;
TData = record
case ProjType:integer of
1BuWu:TBuWu);
2,3x,y:integer);
4,5,6,7,8,9DY:single);
end;
这样好像不好吧?