Database Row Data
Data type for returning a row from a Database. The data is represented as a Map of column names to column values. The object also contains a flag indicating whether this data object represents the last row of the query result.
Class name: com.datashyft.pipeline.dataobjects.DatabaseRowData
DatabaseRowData(Map<String, Object> data, boolean isLast) — Constructs a new Database Row Data object containing the specified row data. The isLast flag indicates whether this is the last data item returned by the query.
DatabaseRowData(Map<String, List<String> tags, String type, Map<String, Object> data, boolean isLast) — Constructs a new Database Row Data object containing the specified row data. The object is assigned the provided tags and type. The isLast flag indicates whether this is the last data item returned by the query.
getData() — Returns the map containing the database row data, or null if there is not data.
isLast() — Indicates whether this data object is the last one returned from the database query that produced it.