If you really want to know all the details, have a look at the source code.
Open database or spreadsheet
Arguments:
Return Values:
Type
objectDescription
handler for further operations
Delete a row from the database
Arguments:
Return Values:
Type
intDescription
nr. of rows affected?
Insert a row in the database
Arguments:
Return Values:
Type
intDescription
nr. of rows affected
Update a row in the database
Arguments:
Return Values:
Type
intDescription
nr. of rows affected?
Replace a row in the database--insert if the row does not exist yet
Arguments:
Return Values:
Type
intDescription
nr. of rows affected?
Get result rows: columns from table where cond
Arguments:
Return Values:
Type
arrayDescription
array of objects, objects have column labels as keys
Set the rows to skip in sheets (spreadsheets only) so first row contains headers and second and below data similar to JS array splice function
Arguments:
Do a simple query without getting results, (jdbc only) useful for modifying, creating and deleting tables
Arguments:
Return Values:
Type
booleanDescription
indicating success or failure.
Get key of last insert statement (jdbc only)
Arguments:
Name
handler
Type
objectDescription
Return Values:
Type
intDescription
Close the database connection (jdbc only)
Arguments:
Name
handler
Type
objectDescription
Do an update query without getting results, (jdbc only) use for INSERT, DELETE, UPDATE
Arguments:
Return Values:
Type
intDescription
nr. of rows affected?
Get result rows from a SELECT query (jdbc only)
Arguments:
Return Values:
Type
arrayDescription
array of objects, objects have column labels as keys