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 ...
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 ...
JavaBlock[expr] causes all new Java objects returned to Mathematica during the evaluation of expr to be released when expr finishes. It is an error to refer to such an object ...
JavaShow[window] causes the specified Java window to be brought to the foreground, so that it appears in front of notebook windows.
KeepJavaObject[object] causes the specified object or objects not to be released when the current JavaBlock ends. KeepJavaObject[object, Manual] causes the specified object ...
LoadJavaClass[classname] loads the specified class into Java and sets up definitions so that it can be used from Mathematica.
$RelaxedTypeChecking is a flag that can be set to True to speed up the validation performed in Mathematica (via pattern tests) on arrays of data being sent as arguments to ...
AddEventHandler[obj@event, func] assigns the specified Mathematica function func to be called when the given event event fires.
KeepNETObject[object] causes the specified object(s) not to be released when the current NETBlock ends. KeepNETObject[object, Manual] causes the specified object to escape ...
MakeNETObject[expr] constructs a .NET object that represents the given Mathematica expression. MakeNETObject[expr, type] creates an object of the specified type from expr.