Search code examples
delphidelphi-7parameterizedbdetquery

Help with Parameterized Query (using Delphi 7 and BDE)


Can someone help me and explain to my why this code crashes on the ExecSQL statement?

function UpdateLastBankResponsesId(ADatabase: TDatabase; AValue: Integer): String;  
var  
AQuery2: TQuery;  
begin 
result:= ''; 
AQuery2:= TQuery.Create(nil); 
AQuery2.DatabaseName:= ADatabase.DatabaseName;  
with AQuery2 do  
begin  
SQL.Text:= 'UPDATE last_id Set TABLENAME =:ATableName, LASTID=:ALastId';  
ParamByName('ATableName').AsString:= 'responses';  
ParamByName('ALastId').AsInteger:= AValue;  
try  
ExecSql; //***** CRASHES HERE *****  
except  
begin  
ExitCode:= 16;  
raise ECustomException.create('Error Updating Last Id table!');  
end;//except  
end; //try  
end; //with  
AQuery2.Free;  
end;  

Solution

  • I was trying to set a value that already existed

    Set TABLENAME =:ATableName  
    

    I actually only needed to set the LASTID

    UPDATE last_id SET LASTID=:ALastId WHERE TABLENAME =:ATableName  
    

    I can't believe I did that