/*
 * Copyright 2010-2020 Redgate Software Ltd
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.flywaydb.core.internal.sqlscript;

import org.flywaydb.core.internal.jdbc.JdbcTemplate;
import org.flywaydb.core.internal.jdbc.Results;

A sql statement from a script that can be executed at once against a database.
/** * A sql statement from a script that can be executed at once against a database. */
public class ParsedSqlStatement implements SqlStatement { private final int pos; private final int line; private final int col; private final String sql; public int getPos() { return pos; } public int getLine() { return line; } public int getCol() { return col; }
The delimiter of the statement.
/** * The delimiter of the statement. */
private final Delimiter delimiter; private final boolean canExecuteInTransaction; public ParsedSqlStatement(int pos, int line, int col, String sql, Delimiter delimiter, boolean canExecuteInTransaction ) { this.pos = pos; this.line = line; this.col = col; this.sql = sql; this.delimiter = delimiter; this.canExecuteInTransaction = canExecuteInTransaction; } @Override public final int getLineNumber() { return line; } @Override public final String getSql() { return sql; } @Override public String getDelimiter() { return delimiter.toString(); } @Override public boolean canExecuteInTransaction() { return canExecuteInTransaction; } @Override public Results execute(JdbcTemplate jdbcTemplate ) { return jdbcTemplate.executeStatement(sql); } }