Programmer Guide : solidDB® SA : solidDB® SA function reference : SaDynStrMove
  
SaDynStrMove
SaDynStrMove copies the value of the string (the second parameter) to the SaDynStrT (the first parameter).
SaDynStrMove copies the string, not the pointer.
The SaDynStrT must be initialized with SaDynStrCreate before SaDynStrT is set with SaDynStrMove.
CAUTION: Do not copy a SaDynStrT to another SaDynStrT (for example with memcpy). This would result in two SaDynStrT pointers pointing at the same allocated area.
Synopsis
void SA_EXPORT_H SaDynStrMove( SaDynStrT* p_ds,
  char* str)
Parameters
Parameters
Usage type
Description
p_ds
out
Pointer to a dynamic string variable.
str
in, use
New value of a dynamic string.
Return value
None.
See also
solidDB® SA function reference