SQLResultSetColumnNames[rs] returns a list of {table, column} pairs for each column in 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.
SQLResultSetShift[rs, num] shifts the current position of a result set by num.
SQLResultSets[] returns a list of the open SQLResultSet objects.
SQLTable[...] represents a table in an SQL connection.
The raw SQL command DROP TABLE drops tables from a database. An alternative is to use the Mathematica command SQLDropTable, described in "Dropping Tables". If you find that ...
The SQL command INSERT inserts data into a database. An alternative is to use the Mathematica command SQLInsert, as described in "Inserting Data". If you find that the ...
JavaClassPath[] returns the class search path in use by the Java runtime. This includes classes specified via the CLASSPATH environment variable (if any), directories and ...
JavaThrow["exception"] causes an exception of the specified class to be thrown in the Java thread that called the Mathematica program in which JavaThrow occurred. ...