How do I mapped an oracle table column of type NVARCHAR2(100) to JPA fields? -


i have oracle table contains 4 columns, 1 of them localizedtext of type nvarchar2(100).

when import table using eclipse (mars) environment jpa class, creates class create field private object localizedtext. errors out when run code since during runtime not accept field of type object.

how change private object localizedtext; definition work oracle nvarchar2(100) type column?

thanks

define attribute string in jpa class


Comments