Q&A

  • ClientDataSet의 Aggregates 에 대해서 궁금합니다.
<!--Codes-->
with ClientDataSet1.Aggregates.Add do begin
  Expression := 'sum(amt)';
  Active := True;
end;
ClientDataSet1.IndexName := 'by_deps';
ClientDataSet1.AggregatesActive := True;
Label1.Caption := 'Total  : ' + VarToStr(ClientDataSet1.Aggregates[0].Value);
<!--CodeE-->

위처럼 해서 클라이언트데이터셋의 통계를 활용해 금액통계를 뽑아보려고 하는데요.
Active 에서 계속 에러가 나네요. Active 를 빼고 해보면 아무값도 나오지 않습니다.
국내사이트에선 검색해도 예제를 찾아볼수 없어 구글에서 위와같은 예제가 나와 한번 해보려는데 안되네요.
Aggregates 를 사용하여 통계를 쓰시는 분이 있으시면 답변좀 부탁드립니다.
0  COMMENTS