solidDB Help : solidDB reference : 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.
Important 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
The following table describes the 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.
Go up to
solidDB SA: Function reference