* 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);
}