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.
SQLResultSetOpen[query] makes a result set from an SQL query.
SQLResultSetPosition[rs] returns an integer that specifies the current position in a result set.