Esempio n. 1
0
 @Override
 public Connection getConnection() throws SQLException {
   try {
     return pool.get();
   } catch (InterruptedException
       | TimeoutException
       | ObjectBorrowException
       | ObjectCreationException ex) {
     throw new SQLException(ex);
   }
 }