For Java EE development in an IBM iSeries (aka AS/400) environment, I would like to use JPA 2.0. Is there a JPA 2.0 provider with support for DB2/400 databases?
Update: target deployment environment will be JBoss AS 6 and 7.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it is possible. With your target environment (JBoss AS 6 and 7) you already have JPA 2.0 capable Hibernate runtime, so I assume that Hibernate is the persistence provider you want to use.
drivers
Opposite to to what you present in your comment, at least Hibernate does not choose right dialect based to driver. There is no one-to-one mapping between driver and dialect. For example with MySQL dialect depends about table type (innoDb/MyISAM) and version of MySQL, and all of them can be used with same version of Connector/J.