Login ProductsSalesSupportDownloadsAbout |
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 Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |