tibasTuple_PutAll()

Puts a collection of fields into the tuple.

Declaration

tibas_status tibasTuple_PutAll(
    tibasTuple tuple,
    tibasTuple otherTuple)

Parameter

Parameter Description
tuple The tuple in which the fields contained in othertuple will be put. If fields of the same name are contained in otherTuple, tuple’s fields will be overwritten with the corresponding values of the fields in otherTuple.
otherTuple The tuple containing the fields that will be put into tuple.

Remarks

Use the tibasTuple_PutAll() function to put a collection of fields into a specified tuple.

Merges the fields of the tuple specified as otherTuple into the tuple specified as tuple. If the field name of the incoming tuple matches the field inside the current tuple, the value of the field in the current tuple is overwritten with the value of the field from the incoming tuple. An exception is thrown if the current tuple or the incoming tuple is null.