1;"example "test" text";123
This will lead to an error. Actually Microsoft suggests to use a unique text qualifier. One possible Option is to use more than one character:
1;@@example "test" text
Another way to deal with this is to escape the occuring character within the text. Due to the fact that you cannot specifiy the escape string in AX I tried several ways to do the escape. \" is not working. Instead you have to double the character:
1;"example ""test"" text";123
This will Import the text example "test" text into the database.
No comments:
Post a Comment