In version 3.1rc2, I'm loading a Map with:
<map name="properties" table="Configmap">
<key column="configsetoid"/>
<map-key column="propertyname" type="string" />
<element type="java.lang.String">
<column name="propertyvalue" />
</element>
</map>
and, in Postgresql, everything works, when I do:
Map props = currentConfigset.getProperties();
String test = (String)props.get(Context.CERT_AND_KEY);
But, in Derby- the String comes back as null.
In Derby,
Set maps = currentConfigset.getConfigmaps();
Does work... it is only the <map> collection that seems broken.
Also, the SQL generated from show_sql *does* work when I cut and paste it into a manual SQL command... but the DEBUG logging still says that the resultset is empty!!?!!
Maybe a bug?
-Tom
|