Insert, update or delete records without refetching data from database after every operation. Syntax: property BatchModify: Boolean; Description: If you want implement batch Insert, Delete or Update operations, we suggest you to use BatchModify property. This property allows you increase operation speed. When you set BatchModify to True, DAC for MySQL doesn't fetch data from database after each Insert or Update operations.
Example: procedure TForm1.Button1Click(Sender: TObject); |