Does Jonas support database arrays for container managed persistence ?

For example, I have the following table that I would like to access via an 
entity bean using container managed persistence.  (Sure, I could use bean 
managed persistence, but what fun would that be?)

create table atable(
        <cut other columns ...>
        myDbArray   INT4[ ],       -- a SQL array
)

What would the remote interface get method look like?
maybe...
public interface ATable implements EJBObject {
        <etc.>
          int[ ] getMyDbArray();
}

Thanks,
-Bill.

----
To unsubscribe, send email to [EMAIL PROTECTED] and
include in the body of the message "unsubscribe jonas-users".
For general help, send email to [EMAIL PROTECTED] and
include in the body of the message "help".

Reply via email to