Put

The put operation adds a row to a data grid table.

Before calling the put method, your program must first create a row object and set its columns with values.

The row object must contain a value in all columns of the primary key. The value of the key is unique. If the table already contains a row with that key value, then the put operation replaces the existing row within the table. The put operation overwrites any unchanged columns in the row. The columns that are not part of the primary key can either contain data or be NULL.

Related concepts