All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nocrala.tools.database.db.parser.ScriptSQLStatement Maven / Gradle / Ivy

Go to download

This Maven plugin automates the build, rebuild, and clean operations on a project database based on the SQL source code available in a strict, versioned structure in the the SCM.

There is a newer version: 1.0.3
Show newest version
package org.nocrala.tools.database.db.parser;

public class ScriptSQLStatement {

  private int line;
  private int col;
  private String sql;

  public ScriptSQLStatement(final int line, final int col, final String sql) {
    this.line = line;
    this.col = col;
    this.sql = sql;
  }

  public int getLine() {
    return line;
  }

  public int getCol() {
    return col;
  }

  public String getSql() {
    return sql;
  }

  public String toString() {
    return "line " + this.line + ", col " + this.col + ":" + this.sql;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy