-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 
Author Message
 Post subject: reverse enigneer mysql
PostPosted: Tue Jan 10, 2006 6:08 am 
Newbie

Joined: Tue Jan 10, 2006 6:05 am
Posts: 3
I've been using the eclipse tools to reverse-engineer a simple database with two tables and some foreign keys.
I'm using mysql 4.1 (and 5) and hibernate 3.1 and most of the process was successful - i managed to create the classes and mapping files, the only thing missing is the generation of the foreign key mapping.

am i missing somthing here?


Top
 Profile  
 
 Post subject: InnoDB tables required
PostPosted: Tue Jan 10, 2006 4:10 pm 
Newbie

Joined: Mon Jan 09, 2006 9:12 pm
Posts: 5
Hi,
From what I've seen you must be using the InnoDB table type in MySQL (and have the foreign keys set).
Here's a page about converting table types.

-Ben


Top
 Profile  
 
 Post subject: innoDB
PostPosted: Thu Jan 12, 2006 7:03 am 
Newbie

Joined: Tue Jan 10, 2006 6:05 am
Posts: 3
You are right - but I have been using the InnoDB engine on both versions
of the mySql and no luck..


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jan 12, 2006 7:16 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
then use a more uptodate driver

_________________
Max
Don't forget to rate


Top
 Profile  
 
 Post subject: mysql drivers
PostPosted: Thu Jan 12, 2006 10:36 am 
Newbie

Joined: Tue Jan 10, 2006 6:05 am
Posts: 3
I think i did -
I've been trying mysql-connector-java-3.1.8 and mysql-connector-java-3.1.12 (latest)


Top
 Profile  
 
 Post subject: reverse engineer mysql
PostPosted: Thu Jan 12, 2006 11:41 pm 
Newbie

Joined: Thu Jan 12, 2006 11:15 pm
Posts: 2
Hi guys,

I got the same problem. I've also updated my mysql driver to 3.1.12 with the same effect: no foreign keys were recognized.

The SQL-Explorer of myeclipse is showing me the foreign keys with the same driver version (So it can't be a problem of the driver or the DB?!?).


cheers ... Fred

PS: I turned the debug output on: Deos the following output mean that foreign keys were already recognized, or is this message created for all tables?

Info 2006-01-13 16:33:33.800 DEBUG Worker-24 org.hibernate.cfg.JDBCBinder - Calling getExportedKeys on org.hibernate.mapping.Table(tms.NCBService)


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jan 13, 2006 2:28 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
that message is created for all tables, their should also be a line per foreign key. I'll check if we could add some more logging to help us out debugging why this is happening.

_________________
Max
Don't forget to rate


Top
 Profile  
 
 Post subject: reverse engineering - debug output
PostPosted: Sun Jan 15, 2006 4:24 pm 
Newbie

Joined: Thu Jan 12, 2006 11:15 pm
Posts: 2
Hi Max,

below you'll find the definition of the 2 mysql tables which I try to reverse engineer (mysql 5 server, jdbc driver 3.1.12) - further below you'll find the debug output.

cheers ... Fred
------------------------------------------------------------------------------------

Table Create Table
------ -----------------------------------------------------------------------------
NCBService CREATE TABLE `NCBService` (
`NCBID` int(11) NOT NULL default '0',
`ServiceID` int(11) NOT NULL default '0',
`AttributeName` varchar(255) NOT NULL,
`AttributeValue` varchar(255) NOT NULL,
`ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `NCBID` (`NCBID`),
KEY `ServiceID` (`ServiceID`),
CONSTRAINT `FK_NCBService_1` FOREIGN KEY (`NCBID`) REFERENCES `ncb` (`ID`),
CONSTRAINT `FK_NCBService_2` FOREIGN KEY (`ServiceID`) REFERENCES `service` (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1


Table Create Table
------ -----------------------------------------------------------------------------
NCB CREATE TABLE `NCB` (
`ID` int(11) NOT NULL auto_increment,
`ParentNCBID` int(11) default NULL,
`NCBTypeID` int(11) NOT NULL default '0',
`NamePrefix` varchar(4) default NULL,
`Name` varchar(255) NOT NULL,
`NameLast` varchar(50) default NULL,
`NameSuffix` varchar(4) default NULL,
`Active` tinyint(1) NOT NULL default '0',
`RatingID` int(11) NOT NULL default '0',
`LoginName` varchar(50) default NULL,
`LoginPassword` varchar(64) default NULL,
`LoginCert` text,
`OneOff` tinyint(1) NOT NULL default '0',
`ConnectionLimit` int(11) NOT NULL default '0',
`Deleted` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ID` (`ID`),
KEY `ParentNCBID` (`ParentNCBID`),
CONSTRAINT `FK_NCB_1` FOREIGN KEY (`ID`) REFERENCES `ncb` (`ID`),
CONSTRAINT `FK_NCB_2` FOREIGN KEY (`ParentNCBID`) REFERENCES `ncb` (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1

------------------------------------------------------------------------------------

the debug output of the hibernate tools:
------------------------------------------------------------------------------------


!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.92
!MESSAGE INFO ModalContext org.hibernate.cfg.reveng.OverrideRepository - Override file: C:\develop\TERRANET2\src\hibernate.reveng.xml

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.92
!MESSAGE DEBUG ModalContext org.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-3.0.dtd in classpath under org/hibernate/

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.92
!MESSAGE DEBUG ModalContext org.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-3.0.dtd in classpath

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... on-3.0.dtd in classpath under org/hibernate/

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... on-3.0.dtd in classpath

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.108
!MESSAGE INFO ModalContext org.hibernate.cfg.Configuration - configuring from XML document

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.cfg.Configuration - myeclipse.connection.profile=Terranet_TMS_LOCAL

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.cfg.Configuration - connection.url=jdbc:mysql://localhost:3306/tms

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.cfg.Configuration - connection.username=root

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.cfg.Configuration - connection.password=secret00

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.cfg.Configuration - connection.driver_class=com.mysql.jdbc.Driver

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.cfg.Configuration - dialect=org.hibernate.dialect.MySQLDialect

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.108
!MESSAGE INFO ModalContext org.hibernate.cfg.Configuration - Configured SessionFactory: nz.co.terralink.terranet.SessionFactory

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.108
!MESSAGE DEBUG ModalContext org.hibernate.cfg.Configuration - properties: {java.vendor=Sun Microsystems Inc., org.osgi.supports.framework.extension=true, hibernate.connection.url=jdbc:mysql://localhost:3306/tms, sun.management.compiler=HotSpot Client Compiler, osgi.framework.beginningstartlevel=1, os.name=Windows XP, sun.boot.class.path=C:\Program Files\Java\jre1.5.0_06\lib\rt.jar;C:\Program Files\Java\jre1.5.0_06\lib\i18n.jar;C:\Program Files\Java\jre1.5.0_06\lib\sunrsasign.jar;C:\Program Files\Java\jre1.5.0_06\lib\jsse.jar;C:\Program Files\Java\jre1.5.0_06\lib\jce.jar;C:\Program Files\Java\jre1.5.0_06\lib\charsets.jar;C:\Program Files\Java\jre1.5.0_06\classes, osgi.ws=win32, sun.desktop=windows, java.vm.specification.vendor=Sun Microsystems Inc., java.runtime.version=1.5.0_06-b05, osgi.instance.area=file:/C:/develop/, http.proxyPort=8080, user.name=mseitter, org.osgi.framework.system.packages=javax.accessibility,javax.activity,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.management,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stream,javax.xml.validation,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.events,org.w3c.dom.ls,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers, proxySet=true, connection.driver_class=com.mysql.jdbc.Driver, hibernate.session_factory_name=nz.co.terralink.terranet.SessionFactory, org.osgi.framework.language=en, user.language=en, org.osgi.framework.processor=x86, osgi.syspath=c:\bin\eclipse\plugins, sun.boot.library.path=C:\Program Files\Java\jre1.5.0_06\bin, osgi.manifest.cache=c:\bin\eclipse\configuration\org.eclipse.osgi\manifests, dialect=org.hibernate.dialect.MySQLDialect, eof=eof, org.osgi.framework.bootdelegation=*, java.version=1.5.0_06, org.osgi.framework.os.name=WindowsXP, user.timezone=Pacific/Auckland, sun.arch.data.model=32, osgi.bundles=org.eclipse.core.runtime@2:start, org.eclipse.update.configurator@3:start, http.nonProxyHosts=localhost, proxyPort=8080, java.endorsed.dirs=C:\Program Files\Java\jre1.5.0_06\lib\endorsed, sun.cpu.isalist=, sun.jnu.encoding=Cp1252, eclipse.application=org.eclipse.ui.ide.workbench, file.encoding.pkg=sun.io, org.osgi.framework.vendor=Eclipse, file.separator=\, java.specification.name=Java Platform API Specification, hibernate.cglib.use_reflection_optimizer=true, java.class.version=49.0, user.country=NZ, connection.url=jdbc:mysql://localhost:3306/tms, java.home=C:\Program Files\Java\jre1.5.0_06, osgi.os=win32, eclipse.commands=-os
win32
-ws
win32
-arch
x86
-launcher
C:\bin\eclipse\eclipse.exe
-name
Eclipse
-showsplash
600
-exitdata
864_3c
-vm
C:\WINDOWS\system32\javaw.exe
, java.vm.info=mixed mode, sharing, osgi.splashLocation=c:\bin\eclipse\plugins\org.eclipse.platform_3.1.0\splash.bmp, os.version=5.1, osgi.arch=x86, path.separator=;, connection.password=secret00, java.vm.version=1.5.0_06-b05, hibernate.connection.password=secret00, user.variant=, osgi.framework.shape=jar, java.awt.printerjob=sun.awt.windows.WPrinterJob, http.proxySet=true, osgi.instance.area.default=file:/C:/Documents and Settings/mseitter/workspace/, sun.io.unicode.encoding=UnicodeLittle, org.osgi.framework.version=1.3.0, awt.toolkit=sun.awt.windows.WToolkit, hibernate.connection.username=root, osgi.install.area=file:/c:/bin/eclipse/, osgi.framework=file:/c:/bin/eclipse/plugins/org.eclipse.osgi_3.1.0.jar, user.home=C:\Documents and Settings\mseitter, osgi.bundlestore=c:\bin\eclipse\configuration\org.eclipse.osgi\bundles, osgi.splashPath=platform:/base/plugins/org.eclipse.platform, java.specification.vendor=Sun Microsystems Inc., osgi.nl=en_NZ, java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\system32;C:\WINDOWS;C:\bin\apache-ant-1.6.2\bin;C:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Intel\DMIX;C:\Program Files\FME Suite;C:\bin\cygwin\usr\X11R6\bin;C:\Program Files\Common Files\GTK\2.0\bin;C:\Program Files\MySQL\MySQL Server 5.0\bin;C:\bin\apache-ant-1.6.2\bin;C:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Intel\DMIX;C:\Program Files\FME Suite;C:\bin\cygwin\usr\X11R6\bin;C:\Program Files\Common Files\GTK\2.0\bin;C:\Program Files\MySQL\MySQL Server 5.0\bin;c:\bin\jad;C:\Program Files\PuTTY\;c:\bin\maven-2.0\bin;C:\bin\Python24, java.vendor.url=http://java.sun.com/, eclipse.startTime=1137120058315, org.osgi.framework.os.version=5.1, hibernate.connection.driver_class=com.mysql.jdbc.Driver, connection.username=root, java.vm.vendor=Sun Microsystems Inc., hibernate.dialect=org.hibernate.dialect.MySQLDialect, java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, java.class.path=C:\bin\eclipse\startup.jar, eclipse.vm=C:\WINDOWS\system32\javaw.exe, java.vm.specification.name=Java Virtual Machine Specification, java.vm.specification.version=1.0, sun.cpu.endian=little, sun.os.patch.level=Service Pack 2, org.eclipse.jdt.debug.ui.scrapbookActive=false, java.io.tmpdir=C:\DOCUME~1\mseitter\LOCALS~1\Temp\, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, http.proxyHost=bacchus, eclipse.product=org.eclipse.sdk.ide, os.arch=x86, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, myeclipse.connection.profile=Terranet_TMS_LOCAL, java.ext.dirs=C:\Program Files\Java\jre1.5.0_06\lib\ext, user.dir=C:\bin\eclipse, line.separator=
, java.vm.name=Java HotSpot(TM) Client VM, hibernate.myeclipse.connection.profile=Terranet_TMS_LOCAL, file.encoding=Cp1252, osgi.framework.version=3.0.0, eclipse.buildId=I20050627-1435, proxyHost=bacchus, eclipse.vmargs=-Xms80m
-Xmx512m
-jar
C:\bin\eclipse\startup.jar
, java.specification.version=1.5, org.osgi.framework.executionenvironment=J2SE-1.5, osgi.logfile=C:\develop\.metadata\.log, osgi.configuration.area=file:/c:/bin/eclipse/configuration/}

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.124
!MESSAGE INFO ModalContext org.hibernate.connection.DriverManagerConnectionProvider - Using Hibernate built-in connection pool (not for production use!)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.124
!MESSAGE INFO ModalContext org.hibernate.connection.DriverManagerConnectionProvider - Hibernate connection pool size: 20

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.124
!MESSAGE INFO ModalContext org.hibernate.connection.DriverManagerConnectionProvider - autocommit mode: false

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.124
!MESSAGE INFO ModalContext org.hibernate.connection.DriverManagerConnectionProvider - using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost:3306/tms

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.124
!MESSAGE INFO ModalContext org.hibernate.connection.DriverManagerConnectionProvider - connection properties: {user=root, password=secret00}

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.124
!MESSAGE DEBUG ModalContext org.hibernate.connection.DriverManagerConnectionProvider - total checked-out connections: 0

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.124
!MESSAGE DEBUG ModalContext org.hibernate.connection.DriverManagerConnectionProvider - opening new JDBC connection

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.124
!MESSAGE DEBUG ModalContext org.hibernate.connection.DriverManagerConnectionProvider - created connection to: jdbc:mysql://localhost:3306/tms, Isolation Level: 4

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.124
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - RDBMS: MySQL, version: 5.0.17-nt

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.124
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-3.1.12 ( $Date: 2005-11-17 15:53:48 +0100 (Thu, 17 Nov 2005) $, $Revision$ )

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.124
!MESSAGE DEBUG ModalContext org.hibernate.connection.DriverManagerConnectionProvider - returning connection to pool, pool size: 1

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.124
!MESSAGE INFO ModalContext org.hibernate.dialect.Dialect - Using dialect: org.hibernate.dialect.MySQLDialect

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.transaction.TransactionFactoryFactory - Using default transaction strategy (direct JDBC transactions)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - JDBC batch size: 15

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.139
!MESSAGE DEBUG ModalContext org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Connection release mode: auto

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Maximum outer join fetch depth: 2

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.hql.ast.ASTQueryTranslatorFactory - Using ASTQueryTranslatorFactory

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Query language substitutions: {}

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Second-level cache: enabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Query cache: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Cache provider: org.hibernate.cache.EhCacheProvider

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.139
!MESSAGE DEBUG ModalContext org.hibernate.exception.SQLExceptionConverterFactory - Using dialect defined converter

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Statistics: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:54.139
!MESSAGE INFO ModalContext org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.139
!MESSAGE DEBUG ModalContext org.hibernate.cfg.reveng.dialect.JDBCMetaDataDialect - getTables(null.null.null)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.139
!MESSAGE DEBUG ModalContext org.hibernate.connection.DriverManagerConnectionProvider - total checked-out connections: 0

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.139
!MESSAGE DEBUG ModalContext org.hibernate.connection.DriverManagerConnectionProvider - using pooled JDBC connection, pool size: 0

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.Account) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.AccountConstraint) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.BillingPeriod) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.Brand) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.Currency) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.Item) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Adding table NCB of type TABLE

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.NCBAddress) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.NCBDetail) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.NCBDetailBrand) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.NCBDetailCurrency) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.NCBRole) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Adding table NCBService of type TABLE

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.OrderRequest) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.OrderRequestItem) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.Rating) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.RatingItem) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.Service) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.Settlement) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.SettlementBrand) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.SystemProfile) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.TradingRole) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Table org.hibernate.cfg.reveng.TableIdentifier(tms.terralink_sapi_lookup) excluded by strategy

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Finding columns for tms.NCB

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.155
!MESSAGE DEBUG ModalContext org.hibernate.cfg.reveng.dialect.JDBCMetaDataDialect - getColumns(tms.null.NCB.null)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.170
!MESSAGE DEBUG ModalContext org.hibernate.cfg.reveng.dialect.JDBCMetaDataDialect - getPrimaryKeys(tms.null.NCB)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.170
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - primary key for org.hibernate.mapping.Table(tms.NCB) -> org.hibernate.mapping.PrimaryKey(NCB[org.hibernate.mapping.Column(ID)]) as PRIMARY

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.170
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Finding columns for tms.NCBService

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.170
!MESSAGE DEBUG ModalContext org.hibernate.cfg.reveng.dialect.JDBCMetaDataDialect - getColumns(tms.null.NCBService.null)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.186
!MESSAGE DEBUG ModalContext org.hibernate.cfg.reveng.dialect.JDBCMetaDataDialect - getPrimaryKeys(tms.null.NCBService)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.186
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - primary key for org.hibernate.mapping.Table(tms.NCBService) -> org.hibernate.mapping.PrimaryKey(NCBService[org.hibernate.mapping.Column(ID)]) as PRIMARY

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.202
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Calling getExportedKeys on org.hibernate.mapping.Table(tms.NCB)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:54.217
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Calling getExportedKeys on org.hibernate.mapping.Table(tms.NCBService)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.905
!MESSAGE DEBUG ModalContext org.hibernate.connection.DriverManagerConnectionProvider - returning connection to pool, pool size: 1

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.905
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property id

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.905
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading id with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.905
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property parentNcbid

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.905
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading parentNcbid with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.905
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property ncbtypeId

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading ncbtypeId with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property namePrefix

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading namePrefix with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property name

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading name with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property nameLast

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading nameLast with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property nameSuffix

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading nameSuffix with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property active

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:56.921
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading active with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.561
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property ratingId

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.561
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading ratingId with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.561
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property loginName

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.561
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading loginName with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.561
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property loginPassword

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.561
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading loginPassword with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Sql type mismatch for Table: tms.NCB column: LoginCert between DB and wanted hibernate type. Sql type set to -1(LONGVARCHAR) instead of 12(VARCHAR)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property loginCert

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading loginCert with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property oneOff

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading oneOff with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property connectionLimit

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading connectionLimit with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property deleted

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading deleted with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property id

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading id with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property ncbid

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading ncbid with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property serviceId

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading serviceId with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property attributeName

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading attributeName with null

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Building property attributeValue

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.cfg.JDBCBinder - Cascading attributeValue with null

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.577
!MESSAGE INFO ModalContext org.hibernate.connection.DriverManagerConnectionProvider - cleaning up connection pool: jdbc:mysql://localhost:3306/tms

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.577
!MESSAGE INFO ModalContext org.hibernate.cfg.Configuration - processing extends queue

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.577
!MESSAGE INFO ModalContext org.hibernate.cfg.Configuration - processing collection mappings

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.577
!MESSAGE INFO ModalContext org.hibernate.cfg.Configuration - processing association property references

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.577
!MESSAGE INFO ModalContext org.hibernate.cfg.Configuration - processing foreign key constraints

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.577
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.HibernateMappingExporter - org.hibernate.tool.hbm2x.HibernateMappingExporter outputdir:C:\develop\TERRANET2\src templatePrefix: null path: [C:\develop]

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.592
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.template - CommonsLogLogSystem name is 'org.hibernate.tool.hbm2x.template'

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - **************************************************************

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Starting Jakarta Velocity v1.4

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - RuntimeInstance initializing.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Trying to use logger class org.apache.velocity.tools.generic.log.CommonsLogLogSystem

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Using logger class org.apache.velocity.tools.generic.log.CommonsLogLogSystem

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Resource Loader Instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - FileResourceLoader : initialization starting.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - FileResourceLoader : adding path 'C:\develop'

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - FileResourceLoader : initialization complete.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Resource Loader Instantiated: org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ClasspathResourceLoader : initialization starting.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ClasspathResourceLoader : initialization complete.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceCache : initialized. (class org.apache.velocity.runtime.resource.ResourceCacheImpl)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Default ResourceManager initialization complete.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Loaded System Directive: org.apache.velocity.runtime.directive.Literal

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Loaded System Directive: org.apache.velocity.runtime.directive.Macro

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Loaded System Directive: org.apache.velocity.runtime.directive.Parse

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Loaded System Directive: org.apache.velocity.runtime.directive.Include

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Created: 20 parsers.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Velocimacro : initialization starting.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Velocimacro : allowInline = true : VMs can be defined inline in templates

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Velocimacro : messages on : VM system will output logging messages

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Velocimacro : autoload off : VM system will not automatically reload global library macros

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Velocimacro : initialization complete.

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.592
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - Velocity successfully started.

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext exporter=org.hibernate.tool.hbm2x.HibernateMappingExporter@6885e2

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext c2h=org.hibernate.tool.hbm2x.Cfg2HbmTool@2df736

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext c2j=org.hibernate.tool.hbm2x.Cfg2JavaTool@1c12d9c

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext outputdir=C:\develop\TERRANET2\src

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext template_path=[Ljava.lang.String;@1995fb7

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext artifacts=org.hibernate.tool.hbm2x.ArtifactCollector@5b0f2e

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext cfg=org.hibernate.cfg.JDBCMetaDataConfiguration@419d65

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext hmgs=org.hibernate.tool.hbm2x.HibernateMappingGlobalSettings@1c477f9

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext clazz=org.hibernate.mapping.RootClass(nz.co.terralink.hibernate.tms.Ncb)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.608
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/hibernate-mapping.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.608
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/persistentclass.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.608
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(id)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.608
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/id.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.608
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/pkcolumn.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.624
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(id)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.624
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(parentNcbid)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.624
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.624
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.624
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(parentNcbid)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.624
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(ncbtypeId)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.624
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.624
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.624
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(ncbtypeId)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.624
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(namePrefix)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.624
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.624
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.624
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(namePrefix)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.624
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(name)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.624
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.655
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.655
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(name)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.655
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(nameLast)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.655
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.655
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.655
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(nameLast)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.655
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(nameSuffix)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.655
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.671
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(nameSuffix)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.671
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(active)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.671
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(active)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.671
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(ratingId)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.671
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(ratingId)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.671
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(loginName)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO Finalizer org.hibernate.connection.DriverManagerConnectionProvider - cleaning up connection pool: jdbc:mysql://localhost:3306/tms

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.671
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(loginName)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.671
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(loginPassword)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.671
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.702
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.702
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(loginPassword)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.702
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(loginCert)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.702
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.702
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.702
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(loginCert)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.717
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(oneOff)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.717
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.717
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.717
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(oneOff)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.717
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(connectionLimit)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.717
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.717
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.717
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(connectionLimit)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.717
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(deleted)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.717
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.717
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.717
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(deleted)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.717
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext clazz=org.hibernate.mapping.RootClass(nz.co.terralink.hibernate.tms.Ncb)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.733
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.XMLPrettyPrinter - XMLPrettyPrinting C:\develop\TERRANET2\src\nz\co\terralink\hibernate\tms\Ncb.hbm.xml

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.749
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext clazz=org.hibernate.mapping.RootClass(nz.co.terralink.hibernate.tms.Ncbservice)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.749
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/hibernate-mapping.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.749
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/persistentclass.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.749
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(id)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.764
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/id.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.764
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/pkcolumn.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.764
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(id)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.764
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(ncbid)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.764
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.764
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.764
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(ncbid)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.764
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(serviceId)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.764
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.764
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.764
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(serviceId)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.764
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(attributeName)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.780
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.780
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.780
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(attributeName)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.780
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - putInContext property=org.hibernate.mapping.Property(attributeValue)

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.780
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/property.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.780
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/column.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.780
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext property=org.hibernate.mapping.Property(attributeValue)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.780
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext clazz=org.hibernate.mapping.RootClass(nz.co.terralink.hibernate.tms.Ncbservice)

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.796
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.XMLPrettyPrinter - XMLPrettyPrinting C:\develop\TERRANET2\src\nz\co\terralink\hibernate\tms\Ncbservice.hbm.xml

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.811
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/generalhbm.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 20000 2006-01-16 09:12:59.811
!MESSAGE INFO ModalContext org.hibernate.tool.hbm2x.template - ResourceManager : found hbm/import.hbm.vm with loader org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.827
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - removeFromContext outputdir=C:\develop\TERRANET2\src

!ENTRY org.hibernate.eclipse 1 10000 2006-01-16 09:12:59.827
!MESSAGE DEBUG ModalContext org.hibernate.tool.hbm2x.TemplateHelper - r


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.