SQLDelete[conn, table] deletes the data in a table in an SQL connection.SQLDelete[conn, table, cond] deletes data that matches cond.
SQLDropTable[conn, table] drops a table in an SQL connection.
SQLExecute[conn, command] executes a command in an SQL connection.SQLExecute[conn, command, args] passes arguments to the command.
SQLExpr[expr] allows a Mathematica expression to be stored in a database.
SQLInsert[conn, table, cols, data] inserts data into a table in an SQL connection.
SQLMemberQ[data, column] specifies a condition in an SQL query used to test whether an element of a list matches the value of a column.
SQLResultSetClose[rs] closes a result set.
SQLResultSetColumnNames[rs] returns a list of {table, column} pairs for each column in a result set.
SQLResultSetCurrent[rs] reads the current row from a result set.
SQLResultSetGoto[rs, pos] sets the current position of a result set to pos.