connection = null;
this.connection = connection;
return connection;
if (connection != null) { System.out.println("Binding a valid connection"); } else { System.out.println("Binding a null connection"); }
if (connection != null) { System.out.println( "Closing the bound connection as the session expires"); try { connection.close(); } catch (SQLException ignore) { } }