    /*
     * Release the DMS database connection back to the connection pool
     */
    private void releaseDMSDatabaseConnection() {
        
        if ( this.connection != null ) {
            try {
                this.connection.close();
            }
            catch (DMSException e) {
                e.printStackTrace();
            }
        }
    }