Package org.jboss.arquillian.persistence.script.splitter

Examples of org.jboss.arquillian.persistence.script.splitter.StatementSplitterResolver


   private void executeScript(String script)
   {
      try
      {
         final StatementSplitter statementSplitter = new StatementSplitterResolver(scriptConfigurationInstance.get()).resolve();
         final ScriptExecutor scriptExecutor = new ScriptExecutor(databaseConnection.get().getConnection(), scriptConfigurationInstance.get(), statementSplitter);
         scriptExecutor.execute(script);
      }
      catch (SQLException e)
      {
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.persistence.script.splitter.StatementSplitterResolver

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.