Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The 'Total' field is of a number data type if I leave out the 'IntToStr' is says Incompatible types : string and integer. The function is part of another unit.

Function TAddAnimal.Dead(idead: Integer) : Integer;
begin
  Result := fTotal - iDead;
end;

procedure TfrmDead.Button1Click(Sender: TObject);
begin
  ADOQuery1.Active := False ;
  ADOQuery1.SQL.Text := 'select * from Animals where Name = "'+LabeledEdit1.Text+'"';
  ADOQuery1.Active := True;
  sName := ADOQuery1.FieldByName('Name').Value  ;
  sAfriName := ADOQuery1.FieldByName('African Name').Value ;
  sType := ADOQuery1.FieldByName('Type').Value   ;
  iTotal := ADOQuery1.FieldByName('Total').Value  ;
  tAnimal := TAddAnimal.Create(sName, sAfriName, sType, iTotal);

  iDead  := SpinEdit1.Value;

  ADOQuery1.Active:= false;
  ADOQuery1.SQL.Text:= 'Update Animals set Total = Total - "'+IntToStr  (tAnimal.Dead (iDead))+'" where Name = "'+LabeledEdit1.text+'"';
  ADOQuery1.ExecSQL;
share|improve this question
Try removing the double quotes in the Update sentence, like so : ADOQuery1.SQL.Text:= 'Update Animals set Total = Total - '+IntToStr(tAnimal.Dead (iDead))+' where Name = "'+LabeledEdit1.text+'"'; – RRUZ Oct 6 '12 at 17:21
Okay it run, but its doing the wrong thing. Lets say I set the value on the spin edit to 5, then once i click the button it changes the value in the database to '5' instead of subtracting it. – user1725435 Oct 6 '12 at 17:32
Maybe the issue is in the tAnimal.Dead method, why you no pass the value of the iDead directly (IntToStr(iDead))? – RRUZ Oct 6 '12 at 17:38
I have it. You see in the function it was alread substracting it. then in the sql i was subtrating it again , i just had to remove the 'Total - '. Thank you for your help:) – user1725435 Oct 6 '12 at 17:40
2  
@user1725435, please please use parameters, your code is vulnerable to sql injection attacks this way... – whosrdaddy Oct 7 '12 at 8:27
show 1 more comment

closed as too localized by David Heffernan, user97693321, bensiu, mnel, Bill Oct 16 '12 at 6:02

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Here's a sample that shows you the value of using parameters when making SQL UPDATE statements work. First, as you noticed already, this code only subtracts the value one time, instead of twice, but this code is better than "Generating SQL each time". It uses parameters, and only the parameters change each time, the SQL doesn't. As whosrdaddy suggested, this is standard practice, for a variety of excellent reasons.

// at beginning of program, ONCE, or at designtime, set this up:
  AdoCommand1.CommandText := 'Update Animals set Total = :newtotal where Name = :aname';

// in button1 click:
  newTotal := iTotal  - spinEdit1.Value;
  AdoCommand1.Parameters[0].Value :=  newTotal; // sets newtotal
  AdoCommand1.Parameters[1].Value := aName; // sets aname
  AdoCommand1.Execute;

Secondly, you could be using (and probably should be using) TADOCommand not TADOQuery for the SQL UPDATE statements. I've written the above assuming you use an TADOCommand.

share|improve this answer

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