1.4.4 Using SQL Commands

This section describes how to use the following SQL methods of the cursor object:

select(), insert(), update(), delete(), create(), alter(), drop(), function()

These functions are designed to reflect the SQL syntax you would use if you were writing the SQL directly. For example you might write:

SELECT fieldName FROM tableName
INSERT INTO tableName value1, value2

Accordingly the select() and insert() methods accept the fields and table parameters in a different order.

See Also:

w3schools SQL Tutorial
A good introduction to SQL commands can be found on the w3schools website at http://www.w3schools.com/sql/default.asp.


Subsections
See About this document... for information on suggesting changes.