Thank you for your time
jdk1.6.0_24 64bit
windows 7 ultimate 64bit
firebirdsql 2.1.4
Same behaviour with 2.0.1 official release and OpenJPA 2.0.2-SNAPSHOT
2011-02-12
persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="it.diegocattelan.ninphea-persistence"
transaction-type="RESOURCE_LOCAL">
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
<class>it.diegocattelan.ninphea.persistence.BasicEntity</class>
<class>it.diegocattelan.ninphea.persistence.ana_custom</class>
<properties>
<property name="openjpa.jdbc.DBDictionary"
value="it.diegocattelan.ninphea.openjpa.FB21Dictionary"/>
<property name="openjpa.ConnectionPassword" value="xxx"/>
<property name="openjpa.ConnectionDriverName"
value="org.firebirdsql.jdbc.FBDriver"/>
<property name="openjpa.ConnectionUserName" value="xxx"/>
<property name="openjpa.ConnectionURL"
value="jdbc:firebirdsql:localhost:xxx"/>
<property name="openjpa.ConnectionProperties" value="encoding=UTF8"/>
<property name="openjpa.ConnectionFactoryProperties"
value="PrettyPrint=true, PrettyPrintLineLength=80, PrintParameters=true"/>
<property name="openjpa.RuntimeUnenhancedClasses"
value="unsupported"/>
<property name="openjpa.DynamicEnhancementAgent" value="false"/>
<property name="openjpa.Log" value="commons"/>
</properties>
</persistence-unit>
</persistence>
--
View this message in context: http://openjpa.208410.n2.nabble.com/N-query-problem-with-Version-tp6027619p6031292.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.
|