DatabaseResourcesPath[] gives the list of directories that are searched to find database resources.
JDBC
(DatabaseLink Symbol) JDBC[arg, ...] is an object that holds parameters for making a JDBC connection to a database.
SQLBeginTransaction[conn] initiates an SQL transaction.
SQLCommitTransaction[conn] commits an SQL transaction.
SQLExpr[expr] allows a Mathematica expression to be stored in a database.
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.
SQLSchemaInformation[conn] returns information about the schemas available through an SQL connection.
SQLDropTable drops tables from a database. An alternative, using raw SQL, is demonstrated in "Dropping Tables with Raw SQL". If you find that the examples in this tutorial do ...
When many rows of data are returned from a database query, a significant amount of memory may be required to hold the result. If all of the data does not need to be available ...
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 ...