Package org.infinispan.persistence.jdbc

Examples of org.infinispan.persistence.jdbc.TableManipulation


    * want the store to manage the connection factory, perhaps because it is using an shared connection factory: see
    * {@link org.infinispan.persistence.jdbc.mixed.JdbcMixedStore} for such an example of this.
    */
   public void initializeConnectionFactory(ConnectionFactory connectionFactory) throws PersistenceException {
      this.connectionFactory = connectionFactory;
      tableManipulation = new TableManipulation(configuration.table(), configuration.dialect());
      tableManipulation.setCacheName(cacheName);
      tableManipulation.start(connectionFactory);
   }
View Full Code Here

TOP

Related Classes of org.infinispan.persistence.jdbc.TableManipulation

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.