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
JT.ax78JT.ax78 

SQL Statements (Insert?)

Hi just a quick question,

Is it possible to perform insert statement or are you limited to only using select?

I am using VB.NET

Many Thanks.

 

P.S Still having trouble with the WSDL (Post 06-11-2004).

GlennWGlennW

You need to do this in a two stage process (unless you know the Id's of the objects you are updating).  Use the Select statement to find the Id's of the objects and then create the objects to be updated and then use the Update call.

GlennW

DevAngelDevAngel

Hi JT,

SOQL only supports select.  The create call is used to add records.