You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dan Lively edited this page Jul 14, 2017
·
2 revisions
Create Records
Create records through anonymous objects
stringreturnID="";try{returnID=Sugar.Create("Accounts",new{name="Acme Inc",description="full text description",phone_office="555-555-5555",});}catch(SugarExceptionE){//handle exception}
Updating Records
stringrecordID="<<record_id>>";try{Sugar.Update("Accounts",recordID,new{description="Add fields to update in anonymous object",phone_office="555-333-3333"});}catch(SugarExceptionE){//handle Exception}