* Fixed SetInsertSQL/SetDeleteSQL

git-svn-id: trunk@16295 -
This commit is contained in:
michael 2010-11-02 09:46:07 +00:00
parent b002c36e8b
commit 054d2b71a2

View File

@ -1606,12 +1606,12 @@ end;
procedure TCustomSQLQuery.SetDeleteSQL(const AValue: TStringlist);
begin
FDeleteQry.Assign(AValue);
FDeleteSQL.Assign(AValue);
end;
procedure TCustomSQLQuery.SetInsertSQL(const AValue: TStringlist);
begin
FInsertQry.Assign(AValue);
FInsertSQL.Assign(AValue);
end;
Procedure TCustomSQLQuery.SetDataSource(AVAlue : TDatasource);