4142434445464748
*/ public static Connection getConnection(DataSource ds) { try { return ds.getConnection(); } catch (SQLException e) { throw new CannotGetJdbcConnectionException("Could not get JDBC Connection", e); } }
4243444546474849