STRING creates white spaces after your string. For example STRING(20) stores like
“HELLO WORLD!..”
But CSTRING cuts the string after it finishes like
“HELLO WORLD!”
They works like SQL char(20) and varchar(20) variables.
If you use STRING, database size will be bigger and you will need to use CLIP when you join different STRING variables.
- You should take care of the size of CSTRING. You have to add +1 to original text size.