SQLDataTypeNames[conn] returns the names of data types that can be stored in an SQL connection.
SQLDateTime[datetime] represents date and time information that can be stored in a database.
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.
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.
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.