Class Source

java.lang.Object
com.jedox.etl.components.scriptapi.Source

public class Source extends Object
Processes Integrator sources (extracts or transforms) to read data row by row.
  • Method Details

    • nextRow

      public boolean nextRow()
      Sets the row cursor to the next row of data from the source.
      Returns:
      false if no more rows are available, true otherwise
    • getColumnValue

      public Object getColumnValue(String name)
      Returns the value of a column in the current row.
      Parameters:
      name - the name of the column
      Returns:
      the value of the column referenced with name or null
    • getColumnString

      public String getColumnString(String name)
      Returns the value of a column in the current row as String.
      Parameters:
      name - the name of the column
      Returns:
      the value of the column referenced with name or null
    • close

      public void close()
      Closes the source.