/** Close pool being maintained by this datasource. */
 public void close() throws Exception {
   if (pool != null) {
     pool.close();
   }
   InstanceKeyObjectFactory.removeInstance(instanceKey);
 }