function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
frankcsefrankcse 

Insert Query

Hi,
Can any one tell me is there any way to use insert into query for inserting values to sales force account table.
i want to insert datas through c# coding .
is it possible
Regards
Franklin
SuperfellSuperfell
SOQL is read-only, to create or update data use the create or update API calls, see the docs and/or the .NET quickstart which has plenty of samples of this.
frankcsefrankcse
Thanks Simon