Package com.zaxxer.hikari.util

Examples of com.zaxxer.hikari.util.DriverDataSource


      ds = new HikariDataSource(config);

      Assert.assertTrue(ds.isWrapperFor(DriverDataSource.class));

      DriverDataSource unwrap = ds.unwrap(DriverDataSource.class);
      Assert.assertNotNull(unwrap);

      Connection connection = ds.getConnection();
      connection.close();
View Full Code Here

TOP

Related Classes of com.zaxxer.hikari.util.DriverDataSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.