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 res_users (email) VALUES ('John')")
UPDATE
To retrieve updates:
sqlQuery("UPDATE res_users SET email = 'John' WHERE company_name = 'Company Inc.'")
DELETE
To delete updates:
sqlQuery("DELETE FROM res_users WHERE id = '12'")