Modifying Data
The following code examples show how to use data modification statements.
Procedure for Updates
You can use sqlQuery method to execute data modification statements.
INSERT
To insert updates:
sqlQuery("INSERT INTO Lead (FullName) VALUES ('John')")
UPDATE
To retrieve updates:
sqlQuery("UPDATE Lead SET FullName = 'John' WHERE FirstName = 'Bartholomew'")
DELETE
To delete updates:
sqlQuery("DELETE FROM Lead WHERE Id = '1045625d-99ee-e011-a272-00155d01ad6b'")