Hi,
I have a BDM "Event" with a field "Note" type 'text'.
My db is PostgreSQL.
Bonita saves and reads correctly the data.
I have another web application with Hibernate.
I mapped the Event object with the same Bonita mapping.
Bonita mapping note with this annotation:
@Lob
String note;
When I executed a HQL query
"select Note from Event"
in my application it returns a long value...I aspecting a String value!