Package org.springframework.jdbc.datasource.init

Examples of org.springframework.jdbc.datasource.init.ScriptStatementFailedException


            if (LOGGER.isDebugEnabled()) {
              LOGGER.debug("Failed to execute SQL script statement at line " + lineNumber + " of resource " + resource + ": " + statement, ex);
            }
          } else {
            Exception nextException = ex.getNextException();
            throw new ScriptStatementFailedException(statement, lineNumber, resource, nextException != null? nextException : ex);
          }
        }
      }
    } finally {
      stmt.executeBatch();
View Full Code Here

TOP

Related Classes of org.springframework.jdbc.datasource.init.ScriptStatementFailedException

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.