from java a connection to Tamino

Hello I am looking for the sentence to close from java a connection to Tamino.

A greeting

If I understand your question correctly, this is all you need…


// Obtain the connection to the database
TConnection myConnection = connectionFactory.newConnection( ... );
...
// Close the Connection...
myConnection.close();