Learn R Programming

rHpcc (version 1.0)

ECLTransform-class: Class "ECLTransform"

Description

Creates an ECL "TRANSFORM" definition. A TRANSFORM defines the specific operations that must occur on a record-by-record basis.

Arguments

Fields

name:
Object of class character Class name.
outECLRecord:
Object of class ECLRecord Output record name.
def:
Object of class character ECl definition/code.

Methods

print():
Prints the ECL code.
addField(id, value):
Used to add ECL definitions.
getName():
Returns class name.

Examples

Run this code
  ## Not run: 
#     transfrm <- ECLTransform$new(name="transfrm", outECLRecord=rec_revenueDef);
#     transfrm$addField("SELF.orderNumber", "RIGHT.orderNumber");
#     transfrm$addField("SELF.prodCode", "LEFT.productCode");
#     transfrm$addField("SELF.prodName", "LEFT.productName");
#     transfrm$addField("SELF.revenue", "RIGHT.priceEach * RIGHT.quantityOrdered");
#     
#     joinCondition <- "LEFT.productCode=RIGHT.productCode"
#     ds_revenue <- ECLJoin$new(name="ds_revenue", leftRecordSet= ds_products, 
#                     rightRecordSet=ds_orderDetails, joinCondition = joinCondition, 
#                     joinType = "INNER", def=transfrm$print());
#     ecl1$add(ds_revenue)
#     output <- ECLOutput$new(name="output", def = ds_revenue$getName())
#     ecl$add(output)
#     ecl$print()
#     xmlContent <- ecl$execute()
#     data <- parseResults(xmlContent)
#     data
#   ## End(Not run)

Run the code above in your browser using DataLab