![]() | Products |
| Home » Technical Support » Elevate Web Builder Technical Support » Product Manuals » Elevate Web Builder 3 Manual » Using Databases » Updating DataSets |
begin
with Products do
begin
Products.Insert; // Required to avoid conflict with Insert system function
Columns['ProductID'].AsString:='PHONE-HEADSET';
Columns['Description'].AsString:='Hands-free phone handset';
Columns['ListPrice'].AsFloat:=15.00;
Columns['Shipping'].AsFloat:=2.00;
Save;
end;
end;begin
with Products do
begin
if Find(['ProductID'],['PHONE-HEADSET'],False,True) then
begin
Update;
Columns['Shipping'].AsFloat:=1.80;
Save;
end;
end;
end;begin
with Products do
begin
if Find(['ProductID'],['FLASH-USB-16GB'],False,True) then
Delete;
end;
end;This web page was last updated on Tuesday, September 16, 2025 at 04:56 PM | Privacy Policy © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

