SQLUpdate[conn, table, cols, data] updates data in a table in an SQL connection.
SQLBeginTransaction[conn] initiates an SQL transaction.
$SQLUseConnectionPool gives the default setting that specifies whether a connection pool is used to retrieve a connection.
SQLDropTable[conn, table] drops 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.
SQLResultSetOpen[query] makes a result set from an SQL query.
SQLCreateTable[conn, table, columns] creates a new table in an SQL connection.
$SQLTimeout gives the default time in seconds that DatabaseLink waits while opening connections and executing database queries.
SQLSavepoint[...] is an object that represents a savepoint in an SQL transaction.
SQLStringMatchQ[col, patt] specifies a condition in an SQL query used to test whether the value of a column matches a pattern. The actual format for the pattern varies from ...