Table.RdRepresents a Table object to be created on SAP HANA.
A new Table object.
namecharacter
Table name.
speclist of tuples
Table specification.
datalist of tuples
Data stored in the table.
new()Create a Table object.
Table$new(name, spec = NULL)
namecharacter
Name of the new Table object.
speclist of tuples, optional
The specification of the Table.
WithData()Create a Table object with data.
Table$WithData(initialData)
initialDatalist of tuples
The data to be inserted into the table (by row).
A new Table object with Data.
like()Create a table with the same specification of another DataFrame.
Table$like(table.name, df)
table.namecharacter
Name of the table to be created.
dfDataFrame
DataFrame for table specification extraction.
A Table object
A new Table object with the specification of a given DataFrame.
clone()The objects of this class are cloneable with this method.
Table$clone(deep = FALSE)
deepWhether to make a deep clone.