Description Fields Methods Examples
Creates an ECL "Record Set" definition.
name:Object of class character Class name.
def:Object of class character ECl definition/code.
print():Prints the ECL code.
addField(fieldName, fieldValue, seperator):Used to add ECL definitions.
getName():Returns class name.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
ecl1 <- ECL$new(hostName="127.0.0.1")
recPerson <- ECLRecord$new(name="Person")
recPerson$addField("STRING", "code")
recPerson$addField("STRING", "firstName")
recPerson$addField("STRING", "lastName")
recPerson$addField("STRING", "address")
recPerson$addField("STRING", "stateCode")
recPerson$addField("STRING", "city")
recPerson$addField("STRING", "zip")
ecl1$add(recPerson)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.