dtw_row_SetV()

Usage

Assigns a table value. The caller of the dtw_row_SetV() utility function retains ownership of the memory pointed to by src. To delete the current table value, assign the value to NULL.

Format

int dtw_row_SetV(void *row, char *src, int col)

Parameters
row A pointer to the row to modify.
src A character string containing the new value to set.
col The column number of the value to set.

Examples

void *myTable;
char *myFieldValue = "newValue";
 
rc = dtw_row_SetV(myRow, myFieldValue, 3);


[ Top of Page | Previous Page | Next Page | Index ]