Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-dev] About Oracle User defined types

Hi everybody.

I'm using eclipselink with JPA. Actually, i'm using eclipselink for a stored procedure call. The results of the stored procedure have a "column", with a custom type object value. The sentence

List<DatabaseRecord> queryResultList = (List) ((JpaEntityManager) main.em.getDelegate()).getActiveSession().executeQuery(query, queryArgs);

recovers a list of DatabaseRecord, with a field as [Ljava.lang.Object;@10010ec object. When i'm trying to iterate this array, only have a [Ljava.lang.Object;, with no possibilities of see the data.

How i can do that?






Back to the top