try to change the length in the database. El 28/01/14 00:52, Deepak Gopalakrishnan escribió:
Hello Dev,I've been trying an entity which has a property as below... private String response; @javax.jdo.annotations.Column(allowsNull = "true", jdbcType = "text") @MemberOrder(name = "Response", sequence = "11") @MultiLine(numberOfLines = 10) @TypicalLength(800) public String getResponse() { return response; } My expected behaviour is a text area with any number of characters ( or a very high upper limit). I however get an error stating that the value character count exceeds 255 characters ( which is varchar count i believe) Please tell me what I'm missing here.
