Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF "Technology" (Ecore Tools, EMFatic, etc)  » Error saving packages using Teneo/Hiberbate
Error saving packages using Teneo/Hiberbate [message #104174] Tue, 04 December 2007 21:54 Go to next message
Eclipse UserFriend
Originally posted by: mduduzi.keswa.isizwe.com

I'm trying to save EPackage's into a database using Teneo_Hibernate
example. Hibernate connection properties are defined in a .properties
file. Am I missing something?

I have included code snippet and output:

===== CODE ==========
-------------Start----------------
public class Tutorial3 {

/** The main method */
public static void main(String[] args) {

// Create the DataStore.
final String dataStoreName = "LibraryDataStore";
final HbDataStore dataStore =
(HbDataStore)HbHelper.INSTANCE.createRegisterDataStore(dataS toreName);

// the name of the database, this database should exist but does not
// need to contain tables
// String dbName = "library";

// Configure the EPackages used by this DataStore.
EPackage[] epacks = new EPackage[] { EcorePackage.eINSTANCE,
XMLTypePackage.eINSTANCE, LibraryPackage.eINSTANCE };
dataStore.setEPackages(epacks);

// Initialize the DataStore. This sets up the Hibernate mapping and, in
// turn, creates the corresponding tables in the database.
try
{
dataStore.initialize();
}
catch (HibernateException he) {
he.printStackTrace();
throw new Error("HibernateException", he);
}

final SessionFactory sessionFactory = dataStore.getSessionFactory();
{
// Open a new Session and start transaction.
final Session session = sessionFactory.openSession();
session.beginTransaction();

// the epacks list contains the EPackages you want to persist
for (EPackage epack : epacks) {
session.save(epack);
}
session.getTransaction().commit();


// now for test purposes read them back and put them in an array
/*
s = hbds.getSessionFactory().openSession();
final List l = s.createQuery("select e from ecore.EPackage e").list();
final EPackage[] newEpacks = new EPackage[l.size()];
int i = 0;
for (Object o : l) {
final EPackage epack = (EPackage) o;
newEpacks[i++] = epack;
}
*/

// Commit the changes to the database.
session.getTransaction().commit();
// Close the session. Not necessary if
session.close();
}
}
}
-------------End------------------

===== OUTPUT ========
-------------Start----------------
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for EReference/eSuperTypes
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eclass_esupertypes_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ECLASS_ESUPERTYPES_IDX to eSuperTypes
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many bidirectional inverse mapping for
EReference/eOperations
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Inverse is not set on purpose for indexed collections
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eoperation_econtainingclass_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ECLASS_EOPERATIONS_IDX to eOperations
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eAllAttributes
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eAllReferences
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eReferences
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eAttributes
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eAllContainments
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eAllOperations
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eAllStructuralFeatures
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eAllSuperTypes
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eIDAttribute
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many bidirectional inverse mapping for
EReference/eStructuralFeatures
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Inverse is not set on purpose for indexed collections
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
estructuralfeature_econtainingclass_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ECLASS_ESTRUCTURALFEATURES_IDX to eStructuralFeatures
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for
EReference/eGenericSuperTypes
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eclass_egenericsupertypes_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ECLASS_EGENERICSUPERTYPES_IDX to eGenericSuperTypes
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eAllGenericSuperTypes
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EDataType
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends EClassifier
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EDataType
1266 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EDataType
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic serializable
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EEnum
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends EDataType
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EEnum
1266 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EEnum
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many bidirectional inverse mapping for
EReference/eLiterals
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Inverse is not set on purpose for indexed collections
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eenumliteral_eenum_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EENUM_ELITERALS_IDX to eLiterals
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EEnumLiteral
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends ENamedElement
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EEnumLiteral
1266 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EEnumLiteral
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic value
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for instance
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic literal
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eEnum
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EEnum
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eEnum/EEnum
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn eenumliteral_eenum_e_id
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EFactory
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends EModelElement
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EFactory
1266 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EFactory
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for ePackage
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EOperation
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends ETypedElement
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EOperation
1266 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EOperation
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eContainingClass
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EClass
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eContainingClass/EClass
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn eoperation_econtainingclass_e_id
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for
EReference/eTypeParameters
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eoperation_etypeparameters_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EOPERATION_ETYPEPARAMETERS_IDX to eTypeParameters
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many bidirectional inverse mapping for
EReference/eParameters
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Inverse is not set on purpose for indexed collections
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eparameter_eoperation_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EOPERATION_EPARAMETERS_IDX to eParameters
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for EReference/eExceptions
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eoperation_eexceptions_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EOPERATION_EEXCEPTIONS_IDX to eExceptions
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for
EReference/eGenericExceptions
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eoperation_egenericexceptions_e_id
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EOPERATION_EGENERICEXCEPTIONS_IDX to eGenericExceptions
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EPackage
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends ENamedElement
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EPackage
1266 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EPackage
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic nsURI
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic nsPrefix
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eFactoryInstance
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many bidirectional inverse mapping for
EReference/eClassifiers
1266 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Inverse is not set on purpose for indexed collections
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1266 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
eclassifier_epackage_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EPACKAGE_ECLASSIFIERS_IDX to eClassifiers
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many bidirectional inverse mapping for
EReference/eSubpackages
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Inverse is not set on purpose for indexed collections
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
epackage_esuperpackage_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EPACKAGE_ESUBPACKAGES_IDX to eSubpackages
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eSuperPackage
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EPackage
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eSuperPackage/EPackage
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn epackage_esuperpackage_e_id
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EParameter
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends ETypedElement
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EParameter
1282 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EParameter
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eOperation
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EOperation
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eOperation/EOperation
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn eparameter_eoperation_e_id
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EReference
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends EStructuralFeature
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EReference
1282 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EReference
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic containment
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for container
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic resolveProxies
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eOpposite
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EReference
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eOpposite/EReference
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn ereference_eopposite_e_id
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eReferenceType
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for EReference/eKeys
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
ereference_ekeys_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EREFERENCE_EKEYS_IDX to eKeys
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/EGenericType
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends ecore_EObject
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue EGenericType
1282 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for EGenericType
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eUpperBound
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EGenericType
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eUpperBound/EGenericType
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn egenerictype_eupperbound_e_id
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for
EReference/eTypeArguments
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
egenerictype_etypearguments_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index EGENERICTYPE_ETYPEARGUMENTS_IDX to eTypeArguments
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for eRawType
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eLowerBound
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EGenericType
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eLowerBound/EGenericType
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn egenerictype_elowerbound_e_id
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eTypeParameter
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target ETypeParameter
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eTypeParameter/ETypeParameter
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn etypeparameter_etypeparameter_e_id
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/eClassifier
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EClassifier
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne eClassifier/EClassifier
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn eclassifier_eclassifier_e_id
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/ETypeParameter
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends ENamedElement
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue ETypeParameter
1282 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for ETypeParameter
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for EReference/eBounds
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
etypeparameter_ebounds_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ETYPEPARAMETER_EBOUNDS_IDX to eBounds
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/AnyType
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag class
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue AnyType
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Table `anytype`
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.ManyAttributeMapper - Generating
many valued attribute mapping for EAttribute/mixed
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
anytype_mixed_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ANYTYPE_MIXED_IDX to mixed
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Created featuremap mapping instance for EAttribute/mixed
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for any
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.ManyAttributeMapper - Generating
many valued attribute mapping for EAttribute/anyAttribute
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
anytype_anyattribute_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ANYTYPE_ANYATTRIBUTE_IDX to anyAttribute
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Created featuremap mapping instance for EAttribute/anyAttribute
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Processing feature map feature: AnyType_mixed
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature AnyType/any belongs to this featuremap
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.ManyAttributeMapper - Generating
many valued attribute mapping for EAttribute/any
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
anytype_any_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ANYTYPE_ANY_IDX to any
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Created featuremap mapping instance for EAttribute/any
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature AnyType/anyAttribute belongs to this featuremap
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.ManyAttributeMapper - Generating
many valued attribute mapping for EAttribute/anyAttribute
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
anytype_anyattribute_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ANYTYPE_ANYATTRIBUTE_IDX to anyAttribute
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Created featuremap mapping instance for EAttribute/anyAttribute
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Finished processing featuremap
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Processing feature map feature: AnyType_anyAttribute
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Finished processing featuremap
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Processing feature map feature: AnyType_any
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature AnyType/mixed belongs to this featuremap
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.ManyAttributeMapper - Generating
many valued attribute mapping for EAttribute/mixed
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
anytype_mixed_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ANYTYPE_MIXED_IDX to mixed
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Created featuremap mapping instance for EAttribute/mixed
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature AnyType/anyAttribute belongs to this featuremap
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.ManyAttributeMapper - Generating
many valued attribute mapping for EAttribute/anyAttribute
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
anytype_anyattribute_e_id
1282 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index ANYTYPE_ANYATTRIBUTE_IDX to anyAttribute
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Created featuremap mapping instance for EAttribute/anyAttribute
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Finished processing featuremap
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/ProcessingInstruction
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag class
1282 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue ProcessingInstruction
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Table `processinginstruction`
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic data
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic target
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/SimpleAnyType
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag subclass
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Extends AnyType
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue SimpleAnyType
1297 [main] DEBUG
org.eclipse.emf.teneo.annotations.mapper.AbstractProcessingC ontext -
Determining inherited features which are mapped locally for SimpleAnyType
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for rawValue
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for value
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/instanceType
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target EDataType
1297 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne instanceType/EDataType
1297 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1297 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn edatatype_instancetype_e_id
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/XMLTypeDocumentRoot
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag class
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue XMLTypeDocumentRoot
1297 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Table `xmltypedocumentroot`
1297 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.ManyAttributeMapper - Generating
many valued attribute mapping for EAttribute/mixed
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
xmltypedocumentroot_mixed_e_id
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index XMLTYPEDOCUMENTROOT_MIXED_IDX to mixed
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Created featuremap mapping instance for EAttribute/mixed
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for xMLNSPrefixMap
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for xSISchemaLocation
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for cDATA
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for comment
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for processingInstruction
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
Skipping transient feature for text
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Processing feature map feature: XMLTypeDocumentRoot_mixed
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature XMLTypeDocumentRoot/xMLNSPrefixMap belongs to this featuremap
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for
EReference/xMLNSPrefixMap
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
xmltypedocumentroot_xmlnsprefixmap_e_id
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature XMLTypeDocumentRoot/xSISchemaLocation belongs to this featuremap
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for
EReference/xSISchemaLocation
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
xmltypedocumentroot_xsischemalocation_e_id
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature XMLTypeDocumentRoot/cDATA belongs to this featuremap
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic cDATA
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature XMLTypeDocumentRoot/comment belongs to this featuremap
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic comment
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature XMLTypeDocumentRoot/processingInstruction belongs to this
featuremap
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/processingInstruction
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target ProcessingInstruction
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne processingInstruction/ProcessingInstruction
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn processinginstruction_processinginstruction_e_id
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Feature XMLTypeDocumentRoot/text belongs to this featuremap
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic text
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.FeatureMapMapping
- Finished processing featuremap
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/Book
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag class
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue Book
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Table `book`
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic title
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic pages
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processEnum org.eclipse.emf.ecore.impl.EAttributeImpl@1372656 (name:
category) (ordered: true, unique: true, lowerBound: 0, upperBound: 1)
(changeable: true, volatile: false, transient: false, defaultValueLiteral:
null, unsettable: false, derived: false) (iD: false)
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Process many-to-one EReference/author
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.ManyToOneMapper
- Target Writer
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addManyToOne author/Writer
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
addJoinColumns many-to-one/ no of joincolumns1
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper -
JoinColumn book_author_e_id
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/Library
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag class
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue Library
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Table `library`
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic name
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for EReference/writers
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
library_writers_e_id
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index LIBRARY_WRITERS_IDX to writers
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many unidirectional mapping for EReference/books
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
library_books_e_id
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index LIBRARY_BOOKS_IDX to books
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Mapping Entity EClass/Writer
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Creating entity tag class
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
DValue Writer
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.EntityMapper -
Table `writer`
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.BasicMapper -
processBasic name
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Generating one to many bidirectional inverse mapping for EReference/books
1313 [main] DEBUG org.eclipse.emf.teneo.hibernate.mapper.OneToManyMapper
- Inverse is not set on purpose for indexed collections
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Adding
key columns
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Column
book_author_e_id
1313 [main] DEBUG
org.eclipse.emf.teneo.hibernate.mapper.AbstractAssociationMa pper - Add
list index WRITER_BOOKS_IDX to books
1329 [main] DEBUG org.hibernate.cfg.Configuration - Mapping XML:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<!-- Generated by Teneo on Tue Dec 04 16:42:25 EST 2007 -->
<hibernate-mapping auto-import="false">
<typedef name="ecore.EDiagnosticChain"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">EDiagnosticChain</param>
</typedef>
<typedef name="ecore.EEList"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">EEList</param>
</typedef>
<typedef name="ecore.EEnumerator"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">EEnumerator</param>
</typedef>
<typedef name="ecore.EFeatureMap"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">EFeatureMap</param>
</typedef>
<typedef name="ecore.EFeatureMapEntry"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">EFeatureMapEntry</param>
</typedef>
<typedef name="ecore.EMap"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">EMap</param>
</typedef>
<typedef name="ecore.EResource"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">EResource</param>
</typedef>
<typedef name="ecore.EResourceSet"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">EResourceSet</param>
</typedef>
<typedef name="ecore.ETreeIterator"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2002/Ecore</param>
<param name="edatatype">ETreeIterator</param>
</typedef>
<typedef name="type.Duration"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">Duration</param>
</typedef>
<typedef name="type.ENTITIES"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">ENTITIES</param>
</typedef>
<typedef name="type.ENTITIESBase"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">ENTITIESBase</param>
</typedef>
<typedef name="type.IDREFS"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">IDREFS</param>
</typedef>
<typedef name="type.IDREFSBase"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">IDREFSBase</param>
</typedef>
<typedef name="type.NMTOKENS"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">NMTOKENS</param>
</typedef>
<typedef name="type.NMTOKENSBase"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">NMTOKENSBase</param>
</typedef>
<typedef name="type.NOTATION"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">NOTATION</param>
</typedef>
<typedef name="type.QName"
class=" org.eclipse.emf.teneo.hibernate.mapping.DefaultToStringUserT ype ">
<param name="epackage">http://www.eclipse.org/emf/2003/XMLType</param>
<param name="edatatype">QName</param>
</typedef>
<class name="org.eclipse.emf.ecore.impl.BasicEObjectImpl"
entity-name="ecore_EObject" abstract="false" lazy="false"
discriminator-value="ecore_EObject" table="`ecore_eobject`">
<meta attribute="eclassName">EObject</meta>
<meta attribute="epackage">http://www.eclipse.org/emf/2002/Ecore</meta>
<id type="long" name="e_id" column="e_id"
access=" org.eclipse.emf.teneo.hibernate.mapping.identifier.Identifie rPropertyHandler ">
<meta attribute="syntheticId">true</meta>
<generator class="native"/>
</id>
<discriminator column="`dtype`" type="string"/>
<version name="e_version" column="e_version"
access=" org.eclipse.emf.teneo.hibernate.mapping.property.VersionProp ertyHandler ">
<meta attribute="syntheticVersion">true</meta>
</version>
</class>
<subclass name="org.eclipse.emf.ecore.impl.EModelElementImpl"
entity-name="EModelElement" abstract="true" lazy="false"
extends="ecore_EObject" discriminator-value="EModelElement">
<meta attribute="eclassName">EModelElement</meta>
<meta attribute="epackage">http://www.eclipse.org/emf/2002/Ecore</meta>
<list name="eAnnotations" lazy="true" cascade="all,delete-orphan">
<key update="true" foreign-key="emodelelement_eannotations">
<column name="`eannotation_emodelelement_e_id`" not-null="false"
unique="false"/>
</key>
<list-index column="`emodelelement_eannotations_idx`"/>
<one-to-many entity-name="EAnnotation"/>
</list>
</subclass>
<subclass name="org.eclipse.emf.ecore.impl.ENamedElementImpl"
entity-name="ENamedElement" abstract="true" lazy="false"
extends="EModelElement" discriminator-value="ENamedElement">
<meta attribute="eclassName">ENamedElement</meta>
<meta attribute="epackage">http://www.eclipse.org/emf/2002/Ecore</meta>
<property name="name" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="java.lang.String">
<column not-null="false" unique="false" name="`name`"/>
</property>
</subclass>
<subclass name="org.eclipse.emf.ecore.impl.ETypedElementImpl"
entity-name="ETypedElement" abstract="true" lazy="false"
extends="ENamedElement" discriminator-value="ETypedElement">
<meta attribute="eclassName">ETypedElement</meta>
<meta attribute="epackage">http://www.eclipse.org/emf/2002/Ecore</meta>
<property name="ordered" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="boolean">
<column not-null="false" unique="false" name="`ordered`"/>
</property>
<property name="unique" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="boolean">
<column not-null="false" unique="false" name="`unique`"/>
</property>
<property name="lowerBound" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="int">
<column not-null="false" unique="false" name="`lowerbound`"/>
</property>
<property name="upperBound" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="int">
<column not-null="false" unique="false" name="`upperbound`"/>
</property>
<many-to-one name="eType" entity-name="EClassifier"
foreign-key="etypedelement_etype" lazy="false" insert="true" update="true"
not-null="false">
<column not-null="false" unique="false"
name="`eclassifier_etype_e_id`"/>
</many-to-one>
<many-to-one name="eGenericType" entity-name="EGenericType"
cascade="all" foreign-key="etypedelement_egenerictype" lazy="false"
insert="true" update="true" not-null="false">
<column not-null="false" unique="false"
name="`egenerictype_egenerictype_e_id`"/>
</many-to-one>
</subclass>
<subclass name="org.eclipse.emf.ecore.impl.EStructuralFeatureImpl"
entity-name="EStructuralFeature" abstract="true" lazy="false"
extends="ETypedElement" discriminator-value="EStructuralFeature">
<meta attribute="eclassName">EStructuralFeature</meta>
<meta attribute="epackage">http://www.eclipse.org/emf/2002/Ecore</meta>
<property name="changeable" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="boolean">
<column not-null="false" unique="false" name="`changeable`"/>
</property>
<property name="volatile" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="boolean">
<column not-null="false" unique="false" name="`volatile`"/>
</property>
<property name="transient" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="boolean">
<column not-null="false" unique="false" name="`transient`"/>
</property>
<property name="defaultValueLiteral" lazy="false" insert="true"
update="true" not-null="false" unique="false" type="java.lang.String">
<column not-null="false" unique="false" name="`defaultvalueliteral`"/>
</property>
<property name="unsettable" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="boolean">
<column not-null="false" unique="false" name="`unsettable`"/>
</property>
<property name="derived" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="boolean">
<column not-null="false" unique="false" name="`derived`"/>
</property>
<many-to-one name="eContainingClass" entity-name="EClass"
foreign-key="estructuralfeature_econtainingclass" lazy="false"
insert="false" update="false" not-null="false">
<column not-null="false" unique="false"
name="`estructuralfeature_econtainingclass_e_id`"/>
</many-to-one>
</subclass>
<subclass name="org.eclipse.emf.ecore.impl.EAttributeImpl"
entity-name="EAttribute" abstract="false" lazy="false"
extends="EStructuralFeature" discriminator-value="EAttribute">
<meta attribute="eclassName">EAttribute</meta>
<meta attribute="epackage">http://www.eclipse.org/emf/2002/Ecore</meta>
<property name="iD" lazy="false" insert="true" update="true"
not-null="false" unique="false" type="boolean">
<column not-null="false" unique=&quo
Re: [Fixed]Error saving packages using Teneo/Hiberbate [message #104193 is a reply to message #104174] Wed, 05 December 2007 00:15 Go to previous message
Eclipse UserFriend
Originally posted by: mduduzi.keswa.isizwe.com

Error was caused by using a wrong version of Hibernate library.
Re: [Fixed]Error saving packages using Teneo/Hiberbate [message #612737 is a reply to message #104174] Wed, 05 December 2007 00:15 Go to previous message
Eclipse UserFriend
Originally posted by: mduduzi.keswa.isizwe.com

Error was caused by using a wrong version of Hibernate library.
Previous Topic:Error saving packages using Teneo/Hiberbate
Next Topic:Required WTP plug-ins.
Goto Forum:
  


Current Time: Thu Apr 25 05:45:16 GMT 2024

Powered by FUDForum. Page generated in 0.03379 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top