Kirill Bondar 1/19/2016 6:40:36 AM 1. UI and REST API converts both empties and whitespaces to NULLs. 2. #dp removes NULLs and empties but leaves whitespaces intact. 3. Comparisons do not take trailing whitespaces into account, so that "" = " ", but NULL <> ""; though Len("") = 0 but Len(" ") = 1 4. Assignments and SOAP API recognize NULLs, empties and whitespaces.
|