On 02/13/2014 05:09 PM, Matthias Wegner wrote: > Hi All, > > i use a Changelistener on a Document to update an object. Now i added a > larger text to the object an get the exception "data exception: string data, > right truncation; table: XWIKISTRINGS column: XWS_VALUE". > > First i replaced the german "ü,ö,ä,ß", but they are not the reason as you > can see. > > Did someone know that error? > > My text which throws the exception is > > > Is there a character which i shoudl remove? > > Regards, > Matthias >
Is that a String Property or a TextArea property? String properties have a limit of 255 characters, while TextArea properties have a limit of ~60 000 characters. Putting a longer than allowed text usually triggers that error, and it doesn't matter what kind of characters you have in there (those are unicode characters, not bytes). -- Sergiu Dumitriu http://purl.org/net/sergiu _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
