I need to calculate the Max value of a field, but I'm having troubles doing so. Let's say that my field is named 'VALUE0'. I would like to use the aggregate functions of TClientDataSet to do so. What should I do?

This code will fail only with fields that are BIGINT in my SQL table:

function TFrmIo.GetMaxY(): Integer;
var
  Max0: Integer;
  FieldMax0: TAggregateField;
begin
  if cds.Active then cds.Close;

  FieldMax0 := TAggregateField.Create(cds);
  FieldMax0.FieldName := 'MAX0';
  FieldMax0.Calculated := true;
  FieldMax0.ResultType := ftLargeint;
  FieldMax0.FieldKind := fkAggregate;
  FieldMax0.DataSet := cds;
  FieldMax0.Expression := 'MAX(VALUE0)';
  FieldMax0.Active := true;

  cds.Open;

  Max0 := Integer(FieldMax0.Value);
end;

I get this exception on the "cds.Open" line:

Exception class EDBClient with message 'Type mismatch in expression.'

EDIT

As requested in the comment, the class name of VALUE0's field is TLargeintField and the FieldKind is fkData.

EDIT 2

Changed the question and some parts in the text because now I know that the problem is about BIGINT vs INTEGER in TClientDataSet aggregate functions.

link|improve this question

tell us some of the things you tried and what problems you had. – PA. Nov 24 '11 at 14:05
@PA Just added some code. – haole Nov 24 '11 at 14:09
What type field is Value0 in the ClientDataset? And the value of FieldKind? – Arjen van der Spek Nov 24 '11 at 15:00
@ArjenvanderSpek BIGINT. It works with INTEGER. :( – haole Nov 24 '11 at 15:48
@Haole I tested it with integers and it works as expected, but can you verify that with: showmessage(cds.FieldByName('value0').ClassName) ? And what is the value of cds.FieldByName('value0').FieldKind ? – Arjen van der Spek Nov 24 '11 at 16:08
show 5 more comments
feedback

1 Answer

up vote 1 down vote accepted

As pointed out by Sertac Akyuz, it is not possible to do so on Delphi 2010 and below. Seems to be fixed in Delphi XE, although I haven't tested it.

http://qc.embarcadero.com/wc/qcmain.aspx?d=83610

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.