mcATputCell — Insert data in cell of array table
#include <memcom.h>
int mcATputCell(int handle, const char* name,
mcOff row, mcOff col, mcOff lbuffer, void* buffer);mcATputCell inserts
lbuffer data elements from
buffer in the cell described by
row, col of the array table
name residing on the database
handle. If completed successfully, the function
returns 0. Otherwise, a negative value indicating the
MemCom error number is returned.
handleDatabase handle (input).
nameName of a new dataset defining the array table (input).
rowRow of array table where data is inserted (input).
row must be greater or equal to 1 and
less or equal to the number of defined rows.
colColumn number (not name) of array table where data is
inserted (input). col must be greater or
equal to 1 and less or equal to the number of defined
columns.
lbufferNumber of data elements of buffer to be inserted in array table (input).
bufferBuffer containing data elements to be inserted in
array table (input). The data type must correspond to the
data type specified for the column
col.