Iterator it = pm.getExtent(org.jpox.store.rdbms.SchemaTable2.class).iterator();
while (it.hasNext())
{
org.jpox.store.rdbms.SchemaTable2 st = (org.jpox.store.rdbms.SchemaTable2) it.next();
StoreData data = new MappedStoreData(st.getClassName(), st.getTableName(),
st.getOwner().equals("1") ? true : false,
st.getType().equalsIgnoreCase("FCO") ? MappedStoreData.FCO_TYPE : MappedStoreData.SCO_TYPE,
st.getInterfaceName());
schema_data.add(data);