Erro session.find Hibernate!

Olá pessola estou tentando executrar o seguinte:

public java.util.List getList(String condicao) throws Exception{ SessionFactory factory = new Configuration().addClass(Amigo.class).buildSessionFactory(); Session session = factory.openSession(); Transaction tx = session.beginTransaction(); List amigos = session.find(condicao); session.flush(); tx.commit(); return amigos; }

e me acontece o seguinte:

[code]2005-04-04 14:29:45,359 INFO hibernate.cfg.Environment -> Hibernate 2.1.8
2005-04-04 14:29:45,406 INFO hibernate.cfg.Environment -> loaded properties from resource hibernate.properties:
{hibernate.connection.driver_class=org.firebirdsql.jdbc.FBDriver, hibernate.cglib.use_reflection_optimizer=true,
hibernate.cache.provider_class=net.sf.hibernate.cache.EhCacheProvider, hibernate.cache.use_query_cache=true, hibernate.max_fetch_depth=1,
hibernate.dialect=net.sf.hibernate.dialect.InterbaseDialect, hibernate.jdbc.use_streams_for_binary=true, hibernate.jdbc.batch_size=0, hibernate.query.substitutions=true 1,
false 0, yes ‘Y’, no ‘N’, hibernate.proxool.pool_alias=pool1, hibernate.connection.username=GESTOR, hibernate.cache.region_prefix=hibernate.test,
hibernate.connection.url=jdbc:firebirdsql://localhost/C:/Arquivos de programas/IBOConsole/guj, hibernate.connection.password=msolutec, hibernate.jdbc.batch_versioned_data=true, hibernate.connection.pool_size=1}
2005-04-04 14:29:45,515 INFO hibernate.cfg.Environment -> using java.io streams to persist binary types
2005-04-04 14:29:45,515 INFO hibernate.cfg.Environment -> using CGLIB reflection optimizer
2005-04-04 14:29:45,515 INFO hibernate.cfg.Environment -> using JDK 1.4 java.sql.Timestamp handling
2005-04-04 14:29:45,515 INFO hibernate.cfg.Configuration -> Mapping resource: Amigo.hbm.xml
2005-04-04 14:29:46,125 DEBUG hibernate.util.DTDEntityResolver -> trying to locate http://hibernate.sourceforge.net/hibernate-mapping.dtd in classpath under net/sf/hibernate/
2005-04-04 14:29:46,125 DEBUG hibernate.util.DTDEntityResolver -> http://hibernate.sourceforge.net/hibernate-mapping.dtdnot found in classpath
2005-04-04 14:29:47,656 INFO hibernate.cfg.Binder -> Mapping class: Amigo -> amigos
2005-04-04 14:29:47,781 DEBUG hibernate.cfg.Binder -> Mapped property: nome -> nome, type: string
2005-04-04 14:29:47,796 DEBUG hibernate.cfg.Binder -> Mapped property: endereco -> endereco, type: string
2005-04-04 14:29:47,796 DEBUG hibernate.cfg.Binder -> Mapped property: telefone -> fone, type: string
2005-04-04 14:29:47,796 DEBUG hibernate.cfg.Binder -> Mapped property: celular -> cel, type: string
2005-04-04 14:29:47,796 DEBUG hibernate.cfg.Binder -> Mapped property: email -> email, type: string
2005-04-04 14:29:47,796 DEBUG hibernate.cfg.Binder -> Mapped property: nascimento -> nascimento, type: string
2005-04-04 14:29:47,796 INFO hibernate.cfg.Configuration -> processing one-to-many association mappings
2005-04-04 14:29:47,796 INFO hibernate.cfg.Configuration -> processing one-to-one association property references
2005-04-04 14:29:47,796 INFO hibernate.cfg.Configuration -> processing foreign key constraints
2005-04-04 14:29:47,843 INFO hibernate.dialect.Dialect -> Using dialect: net.sf.hibernate.dialect.InterbaseDialect
2005-04-04 14:29:47,843 DEBUG hibernate.exception.SQLExceptionConverterFactory -> Using dialect defined converter
2005-04-04 14:29:47,859 INFO hibernate.cfg.SettingsFactory -> Maximim outer join fetch depth: 1
2005-04-04 14:29:47,859 INFO hibernate.cfg.SettingsFactory -> Use outer join fetching: true
2005-04-04 14:29:47,875 INFO hibernate.connection.DriverManagerConnectionProvider -> Using Hibernate built-in connection pool (not for production use!)
2005-04-04 14:29:47,875 INFO hibernate.connection.DriverManagerConnectionProvider -> Hibernate connection pool size: 1
2005-04-04 14:29:47,890 INFO hibernate.connection.DriverManagerConnectionProvider -> using driver: org.firebirdsql.jdbc.FBDriver at URL: jdbc:firebirdsql://localhost/C:/Arquivos de programas/IBOConsole/guj
2005-04-04 14:29:47,890 INFO hibernate.connection.DriverManagerConnectionProvider -> connection properties: {user=GESTOR, password=msolutec}
2005-04-04 14:29:47,906 INFO hibernate.transaction.TransactionManagerLookupFactory -> No TransactionManagerLookup configured (in JTA environment, use of process level read-write cache is not recommended)
2005-04-04 14:29:47,906 DEBUG hibernate.connection.DriverManagerConnectionProvider -> total checked-out connections: 0
2005-04-04 14:29:47,906 DEBUG hibernate.connection.DriverManagerConnectionProvider -> opening new JDBC connection
2005-04-04 14:29:48,125 DEBUG hibernate.connection.DriverManagerConnectionProvider -> created connection to: jdbc:firebirdsql://localhost/C:/Arquivos de programas/IBOConsole/guj, Isolation Level: 2
2005-04-04 14:29:48,156 DEBUG hibernate.connection.DriverManagerConnectionProvider -> returning connection to pool, pool size: 1
2005-04-04 14:29:48,156 INFO hibernate.cfg.SettingsFactory -> Use scrollable result sets: true
2005-04-04 14:29:48,156 INFO hibernate.cfg.SettingsFactory -> Use JDBC3 getGeneratedKeys(): false
2005-04-04 14:29:48,171 INFO hibernate.cfg.SettingsFactory -> Optimize cache for minimal puts: false
2005-04-04 14:29:48,171 INFO hibernate.cfg.SettingsFactory -> Query language substitutions: {no=‘N’, true=1, yes=‘Y’, false=0}
2005-04-04 14:29:48,171 INFO hibernate.cfg.SettingsFactory -> cache provider: net.sf.hibernate.cache.EhCacheProvider
2005-04-04 14:29:48,171 INFO hibernate.cfg.SettingsFactory -> query cache factory: net.sf.hibernate.cache.StandardQueryCacheFactory
2005-04-04 14:29:48,171 DEBUG hibernate.cfg.SettingsFactory -> Wrap result sets enabled? : false
2005-04-04 14:29:48,171 INFO hibernate.cfg.Configuration -> instantiating and configuring caches
2005-04-04 14:29:48,187 DEBUG sf.ehcache.CacheManager -> Creating new CacheManager with default config
2005-04-04 14:29:48,187 DEBUG sf.ehcache.CacheManager -> Configuring ehcache from classpath.
2005-04-04 14:29:48,203 WARN ehcache.config.Configurator -> No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: jar:file:/C:/lab/WEB-INF/lib/ehcache-0.7.jar!/ehcache-failsafe.xml
2005-04-04 14:29:48,218 DEBUG ehcache.config.Configuration$DiskStore -> Disk Store Path: C:\DOCUME~1\RodrigoR\CONFIG~1\Temp
2005-04-04 14:29:48,484 INFO hibernate.impl.SessionFactoryImpl -> building session factory
2005-04-04 14:29:48,500 DEBUG hibernate.impl.SessionFactoryImpl -> instantiating session factory with properties: {java.runtime.name=Java™ 2 Runtime Environment, Standard Edition,
hibernate.connection.password=msolutec, hibernate.cache.provider_class=net.sf.hibernate.cache.EhCacheProvider, sun.boot.library.path=C:\j2sdk1.4.2_04\jre\bin, java.vm.version=1.4.2_04-b05,
hibernate.proxool.pool_alias=pool1, hibernate.connection.username=GESTOR, java.vm.vendor=Sun Microsystems Inc., java.vendor.url=http://java.sun.com/, path.separator=;, hibernate.cache.use_query_cache=true,
java.vm.name=Java HotSpot™ Client VM, file.encoding.pkg=sun.io, user.country=BR, sun.os.patch.level=Service Pack 1, java.vm.specification.name=Java Virtual Machine Specification, user.dir=
C:\Arquivos de programas\NetBeans3.6, java.runtime.version=1.4.2_04-b05, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.endorsed.dirs=C:\j2sdk1.4.2_04\jre\lib\endorsed, os.arch=x86, java.io.tmpdir=
C:\DOCUME~1\RodrigoR\CONFIG~1\Temp, line.separator=, java.vm.specification.vendor=Sun Microsystems Inc., user.variant=, os.name=Windows XP, sun.java2d.fontpath=, hibernate.jdbc.batch_versioned_data=true,
hibernate.cache.region_prefix=hibernate.test, java.library.path=C:\j2sdk1.4.2_04\jre\bin;.; C:\WINDOWS\System32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\j2sdk1.4.2_04\bin;
C:\ant/bin;, java.specification.name=Java Platform API Specification, java.class.version=48.0, hibernate.connection.pool_size=1,
java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory, os.version=5.1, user.home=C:\Documents and Settings\RodrigoR, user.timezone=America/Sao_Paulo, java.awt.printerjob=sun.awt.windows.WPrinterJob,
file.encoding=Cp1252, java.specification.version=1.4, hibernate.connection.driver_class=org.firebirdsql.jdbc.FBDriver, java.class.path=C:\Documents and Settings\RodrigoR.netbeans.6\system;C:\Documents and Settings\RodrigoR.netbeans.6\system;
C:\Arquivos de programas\NetBeans3.6\system;C:\Arquivos de programas\NetBeans3.6\modules\ext\AbsoluteLayout.jar;C:\Arquivos de programas\NetBeans3.6\modules\ext\junit-3.8.1.jar;C:\Arquivos de programas\NetBeans3.6\modules\ext\junit-testrunner.jar;
C:\Arquivos de programas\NetBeans3.6\modules\autoload\ext\jsp-api-2.0.jar;C:\Arquivos de programas\NetBeans3.6\modules\autoload\ext\servlet-api-2.4.jar;C:\Arquivos de programas\NetBeans3.6\beans\TimerBean.jar;C:\lab;C:\lab\WEB-INF\classes;
C:\lab\WEB-INF\lib\ant-1.5.3.jar;C:\lab\WEB-INF\lib\ant-optional-1.5.3.jar;C:\lab\WEB-INF\lib\c3p0-0.8.4.5.jar;C:\lab\WEB-INF\lib\cglib-full-2.0.1.jar;C:\lab\WEB-INF\lib\cglib-full-2.0.2.jar;C:\lab\WEB-INF\lib\commons-collections-2.0.jar;
C:\lab\WEB-INF\lib\commons-collections-2.1.1.jar;C:\lab\WEB-INF\lib\commons-collections-2.1.jar;C:\lab\WEB-INF\lib\commons-dbcp-1.1.jar;C:\lab\WEB-INF\lib\commons-dbcp-1.2.1.jar;C:\lab\WEB-INF\lib\commons-lang-1.0.1.jar;C:\lab\WEB-INF\lib\commons-logging-1.0.3.jar;
C:\lab\WEB-INF\lib\commons-logging-1.0.4.jar;C:\lab\WEB-INF\lib\commons-logging.jar;C:\lab\WEB-INF\lib\commons-pool-1.1.jar;C:\lab\WEB-INF\lib\commons-pool-1.2.jar;C:\lab\WEB-INF\lib\concurrent-1.3.2.jar;C:\lab\WEB-INF\lib\concurrent-1.3.3.jar;C:\lab\WEB-INF\lib\connector.jar;
C:\lab\WEB-INF\lib\dom4j-1.4.jar;C:\lab\WEB-INF\lib\ehcache-0.7.jar;C:\lab\WEB-INF\lib\ehcache-0.9.jar;C:\lab\WEB-INF\lib\firebirdsql-full.jar;C:\lab\WEB-INF\lib\hibernate2.jar;C:\lab\WEB-INF\lib\hsqldb.jar;C:\lab\WEB-INF\lib\jaas.jar;C:\lab\WEB-INF\lib\jboss-cache.jar;
C:\lab\WEB-INF\lib\jboss-common.jar;C:\lab\WEB-INF\lib\jboss-jmx.jar;C:\lab\WEB-INF\lib\jboss-system.jar;C:\lab\WEB-INF\lib\jcs-1.0-dev.jar;C:\lab\WEB-INF\lib\jdbc2_0-stdext.jar;C:\lab\WEB-INF\lib\jgroups-2.2.1.jar;C:\lab\WEB-INF\lib\jgroups-2.2.7.jar;C:\lab\WEB-INF\lib\jta.jar;
C:\lab\WEB-INF\lib\junit-3.8.1.jar;C:\lab\WEB-INF\lib\log4j-1.2.8.jar;C:\lab\WEB-INF\lib\log4j.jar;C:\lab\WEB-INF\lib\odmg-3.0.jar;C:\lab\WEB-INF\lib\oscache-2.0.jar;C:\lab\WEB-INF\lib\proxool-0.8.3.jar;C:\lab\WEB-INF\lib\swarmcache-1.0rc2.jar;
C:\lab\WEB-INF\lib\xalan-2.4.0.jar;C:\lab\WEB-INF\lib\xdoclet-1.2.2.jar;C:\lab\WEB-INF\lib\xdoclet-hibernate-module-1.2.2.jar;C:\lab\WEB-INF\lib\xdoclet-xdoclet-module-1.2.2.jar;C:\lab\WEB-INF\lib\xerces-2.4.0.jar;C:\lab\WEB-INF\lib\xjavadoc-1.1.jar;C:\lab\WEB-INF\lib\xml-apis.jar;,
user.name=RodrigoR, hibernate.query.substitutions=true 1, false 0, yes ‘Y’, no ‘N’, java.vm.specification.version=1.0, java.home=C:\j2sdk1.4.2_04\jre, sun.arch.data.model=32, hibernate.dialect=net.sf.hibernate.dialect.InterbaseDialect, hibernate.connection.url=
jdbc:firebirdsql://localhost/C:/Arquivos de programas/IBOConsole/guj, user.language=pt, java.specification.vendor=Sun Microsystems Inc., awt.toolkit=sun.awt.windows.WToolkit, hibernate.cglib.use_reflection_optimizer=true, java.vm.info=mixed mode,
hibernate.jdbc.use_streams_for_binary=true, java.version=1.4.2_04, java.ext.dirs=C:\j2sdk1.4.2_04\jre\lib\ext, sun.boot.class.path=C:\j2sdk1.4.2_04\jre\lib\rt.jar;C:\j2sdk1.4.2_04\jre\lib\i18n.jar;C:\j2sdk1.4.2_04\jre\lib\sunrsasign.jar;C:\j2sdk1.4.2_04\jre\lib\jsse.jar;
C:\j2sdk1.4.2_04\jre\lib\jce.jar;C:\j2sdk1.4.2_04\jre\lib\charsets.jar;C:\j2sdk1.4.2_04\jre\classes, java.vendor=Sun Microsystems Inc., hibernate.jdbc.batch_size=0, file.separator=, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, sun.io.unicode.encoding=UnicodeLittle,
sun.cpu.endian=little, hibernate.max_fetch_depth=1, sun.cpu.isalist=pentium i486 i386}
2005-04-04 14:29:48,937 DEBUG hibernate.impl.SessionFactoryObjectFactory -> initializing class SessionFactoryObjectFactory
2005-04-04 14:29:48,937 DEBUG hibernate.impl.SessionFactoryObjectFactory -> registered: 4028803e030e42cb01030e42ce890000 (unnamed)
2005-04-04 14:29:48,937 INFO hibernate.impl.SessionFactoryObjectFactory -> Not binding factory to JNDI, no JNDI name configured
2005-04-04 14:29:48,937 DEBUG hibernate.impl.SessionFactoryImpl -> instantiated session factory
2005-04-04 14:29:48,937 INFO hibernate.cache.UpdateTimestampsCache -> starting update timestamps cache at region: net.sf.hibernate.cache.UpdateTimestampsCache
2005-04-04 14:29:49,000 WARN hibernate.cache.EhCacheProvider -> Could not find configuration [net.sf.hibernate.cache.UpdateTimestampsCache]; using defaults.
2005-04-04 14:29:49,015 DEBUG ehcache.store.MemoryStore -> net.sf.hibernate.cache.UpdateTimestampsCache Cache: Using SpoolingLinkedHashMap implementation
2005-04-04 14:29:49,015 DEBUG ehcache.store.MemoryStore -> initialized MemoryStore for net.sf.hibernate.cache.UpdateTimestampsCache
2005-04-04 14:29:49,015 DEBUG hibernate.cache.EhCacheProvider -> started EHCache region: net.sf.hibernate.cache.UpdateTimestampsCache
2005-04-04 14:29:49,015 INFO hibernate.cache.StandardQueryCache -> starting query cache at region: net.sf.hibernate.cache.StandardQueryCache
2005-04-04 14:29:49,015 WARN hibernate.cache.EhCacheProvider -> Could not find configuration [net.sf.hibernate.cache.StandardQueryCache]; using defaults.
2005-04-04 14:29:49,015 DEBUG ehcache.store.MemoryStore -> net.sf.hibernate.cache.StandardQueryCache Cache: Using SpoolingLinkedHashMap implementation
2005-04-04 14:29:49,031 DEBUG ehcache.store.MemoryStore -> initialized MemoryStore for net.sf.hibernate.cache.StandardQueryCache
2005-04-04 14:29:49,031 DEBUG hibernate.cache.EhCacheProvider -> started EHCache region: net.sf.hibernate.cache.StandardQueryCache
2005-04-04 14:29:49,093 DEBUG hibernate.impl.SessionImpl -> opened session
2005-04-04 14:29:49,109 DEBUG hibernate.transaction.JDBCTransaction -> begin
2005-04-04 14:29:49,109 DEBUG hibernate.connection.DriverManagerConnectionProvider -> total checked-out connections: 0
2005-04-04 14:29:49,109 DEBUG hibernate.connection.DriverManagerConnectionProvider -> using pooled JDBC connection, pool size: 0
2005-04-04 14:29:49,109 DEBUG hibernate.transaction.JDBCTransaction -> current autocommit status:false
2005-04-04 14:29:49,109 DEBUG hibernate.impl.SessionImpl -> find: from amigos in class Amigo
2005-04-04 14:29:49,125 DEBUG hibernate.hql.QueryTranslator -> compiling query
2005-04-04 14:29:49,156 DEBUG hibernate.impl.SessionImpl -> flushing session
2005-04-04 14:29:49,156 DEBUG hibernate.impl.SessionImpl -> Flushing entities and processing referenced collections
2005-04-04 14:29:49,156 DEBUG hibernate.impl.SessionImpl -> Processing unreferenced collections
2005-04-04 14:29:49,156 DEBUG hibernate.impl.SessionImpl -> Scheduling collection removes/(re)creates/updates
2005-04-04 14:29:49,156 DEBUG hibernate.impl.SessionImpl -> Flushed: 0 insertions, 0 updates, 0 deletions to 0 objects
2005-04-04 14:29:49,156 DEBUG hibernate.impl.SessionImpl -> Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
2005-04-04 14:29:49,156 DEBUG hibernate.impl.SessionImpl -> Dont need to execute flush
2005-04-04 14:29:49,156 DEBUG hibernate.hql.QueryTranslator -> HQL: from amigos in class Amigo
2005-04-04 14:29:49,156 DEBUG hibernate.hql.QueryTranslator -> SQL: select amigos.nome as nome, amigos.endereco as endereco, amigos.fone as fone, amigos.cel as cel, amigos.email as email, amigos.nascimento as nascimento from amigos amigos
2005-04-04 14:29:49,156 DEBUG hibernate.impl.BatcherImpl -> about to open: 0 open PreparedStatements, 0 open ResultSets
2005-04-04 14:29:49,156 DEBUG sf.hibernate.SQL -> select amigos.nome as nome, amigos.endereco as endereco, amigos.fone as fone, amigos.cel as cel, amigos.email as email, amigos.nascimento as nascimento from amigos amigos
2005-04-04 14:29:49,156 DEBUG hibernate.impl.BatcherImpl -> preparing statement
2005-04-04 14:29:49,343 DEBUG hibernate.loader.Loader -> processing result set
2005-04-04 14:29:49,343 DEBUG hibernate.type.StringType -> returning ‘Maria’ as column: nome
2005-04-04 14:29:49,343 DEBUG hibernate.loader.Loader -> result row: Maria
2005-04-04 14:29:49,343 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Maria
2005-04-04 14:29:49,343 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Maria
2005-04-04 14:29:49,343 DEBUG hibernate.type.StringType -> returning ‘Ferdinando’ as column: endereco
2005-04-04 14:29:49,343 DEBUG hibernate.type.StringType -> returning ‘11111’ as column: fone
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘22222’ as column: cel
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘afasdfasdf’ as column: email
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning null as column: nascimento
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘Rodrigo’ as column: nome
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> result row: Rodrigo
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Rodrigo
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Rodrigo
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘Rua: União’ as column: endereco
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘46364280’ as column: fone
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘98375518’ as column: cel
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘rrochas@gmail.com’ as column: email
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning null as column: nascimento
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘Diogo’ as column: nome
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> result row: Diogo
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Diogo
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Diogo
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘aklsdfja’ as column: endereco
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘akldfjakls’ as column: fone
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘klasdkfj’ as column: cel
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘kljasdklfjasdk’ as column: email
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning null as column: nascimento
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘Mauricio’ as column: nome
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> result row: Mauricio
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Mauricio
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Mauricio
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘ajdlksjfk’ as column: endereco
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘asjsdklfj’ as column: fone
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘laçksdfjalk’ as column: cel
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘ljasdkfj’ as column: email
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning null as column: nascimento
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘Rodrigo Rocha’ as column: nome
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> result row: Rodrigo Rocha
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Rodrigo Rocha
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Rodrigo Rocha
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘fklasdjklj’ as column: endereco
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘dkfsdkjf’ as column: fone
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘jasdjfaksdj’ as column: cel
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘dkfjdskfjkas’ as column: email
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning null as column: nascimento
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘Mané’ as column: nome
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> result row: Mané
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Mané
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Mané
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘dkfjas’ as column: endereco
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘kaskldf’ as column: fone
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘kkladsjfkl’ as column: cel
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘kldsjfkladsj’ as column: email
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning null as column: nascimento
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘’ as column: nome
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> result row:
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet:
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘’ as column: endereco
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘’ as column: fone
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘’ as column: cel
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘’ as column: email
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning null as column: nascimento
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘teste’ as column: nome
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> result row: teste
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: teste
2005-04-04 14:29:49,359 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#teste
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘teest’ as column: endereco
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘tew’ as column: fone
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘ewwetfas’ as column: cel
2005-04-04 14:29:49,359 DEBUG hibernate.type.StringType -> returning ‘dfsadfas’ as column: email
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘2005-02-02’ as column: nascimento
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘teste2’ as column: nome
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> result row: teste2
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: teste2
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#teste2
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘eeeeeeee’ as column: endereco
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘ttttttttttt’ as column: fone
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘ccccccccccc’ as column: cel
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘eeeeeeee’ as column: email
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘2002-01-01’ as column: nascimento
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘Jô’ as column: nome
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> result row: Jô
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Jô
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Jô
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘União 800’ as column: endereco
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘46364280’ as column: fone
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘9999999’ as column: cel
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘jo@uol.com.br’ as column: email
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘1956-11-05’ as column: nascimento
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘Jo’ as column: nome
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> result row: Jo
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Jo
2005-04-04 14:29:49,375 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Jo
2005-04-04 14:29:49,375 DEBUG hibernate.type.StringType -> returning ‘união’ as column: endereco
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘463642802’ as column: fone
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘98375518’ as column: cel
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘jo@uol’ as column: email
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘1956-11-05’ as column: nascimento
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘TESTE3’ as column: nome
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> result row: TESTE3
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: TESTE3
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#TESTE3
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘eeeeeee’ as column: endereco
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘tttttttttt’ as column: fone
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘ccccccccccc’ as column: cel
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘eeeeeeeeee’ as column: email
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘2002-01-01’ as column: nascimento
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘jo’ as column: nome
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> result row: jo
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: jo
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#jo
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘uniao’ as column: endereco
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘46364280’ as column: fone
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘98375518’ as column: cel
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘jo@uol.com.br’ as column: email
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘1956-11-05’ as column: nascimento
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘TESTE4’ as column: nome
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> result row: TESTE4
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: TESTE4
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#TESTE4
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘afdas’ as column: endereco
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘adsfj’ as column: fone
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘skjfasdk’ as column: cel
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘kjasdklfja’ as column: email
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘2005-02-02’ as column: nascimento
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘Rodrigo Rocha Silva’ as column: nome
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> result row: Rodrigo Rocha Silva
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Rodrigo Rocha Silva
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Rodrigo Rocha Silva
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘Orquidêa’ as column: endereco
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘46364636’ as column: fone
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘4636555’ as column: cel
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘dfasdfads’ as column: email
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘1981-03-30’ as column: nascimento
2005-04-04 14:29:49,406 DEBUG hibernate.type.StringType -> returning ‘Jovelina Rocha Silva’ as column: nome
2005-04-04 14:29:49,406 DEBUG hibernate.loader.Loader -> result row: Jovelina Rocha Silva
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Jovelina Rocha Silva
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Jovelina Rocha Silva
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘União’ as column: endereco
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘46364280’ as column: fone
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘98989999’ as column: cel
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘fasdfa’ as column: email
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘1956-11-05’ as column: nascimento
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘Cristian Duarte da Silva’ as column: nome
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> result row: Cristian Duarte da Silva
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Cristian Duarte da Silva
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Cristian Duarte da Silva
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘Rua Dep. Castro de Carvalho’ as column: endereco
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘456363663’ as column: fone
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘45665555’ as column: cel
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘dsfasdfasd’ as column: email
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘1976-02-07’ as column: nascimento
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘Solutec’ as column: nome
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> result row: Solutec
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Solutec
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Solutec
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘rinaldo’ as column: endereco
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘46363508’ as column: fone
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘98989985’ as column: cel
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘solutec@solutec’ as column: email
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘2005-01-01’ as column: nascimento
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘TESTEADSJF’ as column: nome
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> result row: TESTEADSJF
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: TESTEADSJF
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#TESTEADSJF
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘ASDKLFJ’ as column: endereco
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘ASDKLF’ as column: fone
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘KJFASDKLF’ as column: cel
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘KJASDKJFK’ as column: email
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘2005-01-01’ as column: nascimento
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘solutec’ as column: nome
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> result row: solutec
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: solutec
2005-04-04 14:29:49,421 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#solutec
2005-04-04 14:29:49,421 DEBUG hibernate.type.StringType -> returning ‘dasklfja’ as column: endereco
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘ljasdklfja’ as column: fone
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘çkljasdklfj’ as column: cel
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘klklçasdjfklasd’ as column: email
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘2001-01-01’ as column: nascimento
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘Hackers’ as column: nome
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> result row: Hackers
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Hackers
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Hackers
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘fkajsdkf’ as column: endereco
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘kjasdkflj’ as column: fone
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘kjasdklfj’ as column: cel
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘kjaskldlfjaskj’’ as column: email
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘2003-02-01’ as column: nascimento
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘Joana’ as column: nome
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> result row: Joana
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Joana
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Joana
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘Orquidêa’ as column: endereco
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘46382945’ as column: fone
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘’ as column: cel
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘’ as column: email
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘1935-10-25’ as column: nascimento
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘Manoel’ as column: nome
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> result row: Manoel
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Manoel
2005-04-04 14:29:49,437 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Manoel
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘Rua União’ as column: endereco
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘46364280’ as column: fone
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘98716646’ as column: cel
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘mauricio@akjdfakls’ as column: email
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘2955-03-28’ as column: nascimento
2005-04-04 14:29:49,437 DEBUG hibernate.type.StringType -> returning ‘Solutec Consultoria’ as column: nome
2005-04-04 14:29:49,453 DEBUG hibernate.loader.Loader -> result row: Solutec Consultoria
2005-04-04 14:29:49,453 DEBUG hibernate.loader.Loader -> Initializing object from ResultSet: Solutec Consultoria
2005-04-04 14:29:49,453 DEBUG hibernate.loader.Loader -> Hydrating entity: Amigo#Solutec Consultoria
2005-04-04 14:29:49,453 DEBUG hibernate.type.StringType -> returning ‘Rua: Rinaldo Lucarini, nº50’ as column: endereco
2005-04-04 14:29:49,453 DEBUG hibernate.type.StringType -> returning ‘11-46363508’ as column: fone
2005-04-04 14:29:49,453 DEBUG hibernate.type.StringType -> returning ‘11-98685828’ as column: cel
2005-04-04 14:29:49,453 DEBUG hibernate.type.StringType -> returning ‘solutec@solutecconsultoria.com.br’ as column: email
2005-04-04 14:29:49,453 DEBUG hibernate.type.StringType -> returning ‘2004-02-01’ as column: nascimento
2005-04-04 14:29:49,453 DEBUG hibernate.loader.Loader -> done processing result set (24 rows)
2005-04-04 14:29:49,453 DEBUG hibernate.impl.BatcherImpl -> done closing: 0 open PreparedStatements, 0 open ResultSets
2005-04-04 14:29:49,453 DEBUG hibernate.impl.BatcherImpl -> closing statement
2005-04-04 14:29:49,453 DEBUG hibernate.loader.Loader -> total objects hydrated: 24
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Maria]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Maria]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Rodrigo]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Rodrigo]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Diogo]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Diogo]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Mauricio]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Mauricio]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Rodrigo Rocha]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Rodrigo Rocha]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Mané]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Mané]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#teste]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#teste]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#teste2]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#teste2]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Jô]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Jô]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Jo]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Jo]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#TESTE3]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#TESTE3]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#jo]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#jo]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#TESTE4]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#TESTE4]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Rodrigo Rocha Silva]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Rodrigo Rocha Silva]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Jovelina Rocha Silva]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Jovelina Rocha Silva]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Cristian Duarte da Silva]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Cristian Duarte da Silva]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Solutec]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Solutec]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#TESTEADSJF]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#TESTEADSJF]
2005-04-04 14:29:49,453 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#solutec]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#solutec]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Hackers]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Hackers]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Joana]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Joana]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Manoel]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Manoel]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> resolving associations for [Amigo#Solutec Consultoria]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> done materializing entity [Amigo#Solutec Consultoria]
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> initializing non-lazy collections
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> flushing session
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> Flushing entities and processing referenced collections
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> Processing unreferenced collections
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> Scheduling collection removes/(re)creates/updates
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> Flushed: 0 insertions, 0 updates, 0 deletions to 24 objects
2005-04-04 14:29:49,468 DEBUG hibernate.impl.SessionImpl -> Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
2005-04-04 14:29:49,468 DEBUG hibernate.impl.Printer -> listing entities:
2005-04-04 14:29:49,468 DEBUG hibernate.impl.Printer -> Amigo{nome=Diogo, celular=klasdkfj, email=kljasdklfjasdk, telefone=akldfjakls, nascimento=null, endereco=aklsdfja}
2005-04-04 14:29:49,468 DEBUG hibernate.impl.Printer -> Amigo{nome=Mané, celular=kkladsjfkl, email=kldsjfkladsj, telefone=kaskldf, nascimento=null, endereco=dkfjas}
2005-04-04 14:29:49,468 DEBUG hibernate.impl.Printer -> Amigo{nome=Joana, celular=, email=, telefone=46382945, nascimento=1935-10-25, endereco=Orquidêa}
2005-04-04 14:29:49,468 DEBUG hibernate.impl.Printer -> Amigo{nome=Cristian Duarte da Silva, celular=45665555, email=dsfasdfasd, telefone=456363663, nascimento=1976-02-07, endereco=Rua Dep. Castro de Carvalho}
2005-04-04 14:29:49,468 DEBUG hibernate.impl.Printer -> Amigo{nome=Maria, celular=22222, email=afasdfasdf, telefone=11111, nascimento=null, endereco=Ferdinando}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Rodrigo, celular=98375518, email=rrochas@gmail.com, telefone=46364280, nascimento=null, endereco=Rua: União}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=TESTE4, celular=skjfasdk, email=kjasdklfja, telefone=adsfj, nascimento=2005-02-02, endereco=afdas}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=jo, celular=98375518, email=jo@uol.com.br, telefone=46364280, nascimento=1956-11-05, endereco=uniao}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=TESTEADSJF, celular=KJFASDKLF, email=KJASDKJFK, telefone=ASDKLF, nascimento=2005-01-01, endereco=ASDKLFJ}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Mauricio, celular=laçksdfjalk, email=ljasdkfj, telefone=asjsdklfj, nascimento=null, endereco=ajdlksjfk}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Solutec Consultoria, celular=11-98685828, email=solutec@solutecconsultoria.com.br, telefone=11-46363508, nascimento=2004-02-01, endereco=Rua: Rinaldo Lucarini, nº50}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=, celular=, email=, telefone=, nascimento=null, endereco=}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Hackers, celular=kjasdklfj, email=kjaskldlfjaskj’, telefone=kjasdkflj, nascimento=2003-02-01, endereco=fkajsdkf}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Jo, celular=98375518, email=jo@uol, telefone=463642802, nascimento=1956-11-05, endereco=união}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Rodrigo Rocha, celular=jasdjfaksdj, email=dkfjdskfjkas, telefone=dkfsdkjf, nascimento=null, endereco=fklasdjklj}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Jovelina Rocha Silva, celular=98989999, email=fasdfa, telefone=46364280, nascimento=1956-11-05, endereco=União}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Jô, celular=9999999, email=jo@uol.com.br, telefone=46364280, nascimento=1956-11-05, endereco=União 800}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=teste2, celular=ccccccccccc, email=eeeeeeee, telefone=ttttttttttt, nascimento=2002-01-01, endereco=eeeeeeee}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Rodrigo Rocha Silva, celular=4636555, email=dfasdfads, telefone=46364636, nascimento=1981-03-30, endereco=Orquidêa}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Solutec, celular=98989985, email=solutec@solutec, telefone=46363508, nascimento=2005-01-01, endereco=rinaldo}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=TESTE3, celular=ccccccccccc, email=eeeeeeeeee, telefone=tttttttttt, nascimento=2002-01-01, endereco=eeeeeee}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> more…
2005-04-04 14:29:49,484 DEBUG hibernate.impl.SessionImpl -> executing flush
2005-04-04 14:29:49,484 DEBUG hibernate.impl.SessionImpl -> post flush
2005-04-04 14:29:49,484 DEBUG hibernate.transaction.JDBCTransaction -> commit
2005-04-04 14:29:49,484 DEBUG hibernate.impl.SessionImpl -> flushing session
2005-04-04 14:29:49,484 DEBUG hibernate.impl.SessionImpl -> Flushing entities and processing referenced collections
2005-04-04 14:29:49,484 DEBUG hibernate.impl.SessionImpl -> Processing unreferenced collections
2005-04-04 14:29:49,484 DEBUG hibernate.impl.SessionImpl -> Scheduling collection removes/(re)creates/updates
2005-04-04 14:29:49,484 DEBUG hibernate.impl.SessionImpl -> Flushed: 0 insertions, 0 updates, 0 deletions to 24 objects
2005-04-04 14:29:49,484 DEBUG hibernate.impl.SessionImpl -> Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> listing entities:
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Diogo, celular=klasdkfj, email=kljasdklfjasdk, telefone=akldfjakls, nascimento=null, endereco=aklsdfja}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Mané, celular=kkladsjfkl, email=kldsjfkladsj, telefone=kaskldf, nascimento=null, endereco=dkfjas}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Joana, celular=, email=, telefone=46382945, nascimento=1935-10-25, endereco=Orquidêa}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Cristian Duarte da Silva, celular=45665555, email=dsfasdfasd, telefone=456363663, nascimento=1976-02-07, endereco=Rua Dep. Castro de Carvalho}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Maria, celular=22222, email=afasdfasdf, telefone=11111, nascimento=null, endereco=Ferdinando}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=Rodrigo, celular=98375518, email=rrochas@gmail.com, telefone=46364280, nascimento=null, endereco=Rua: União}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=TESTE4, celular=skjfasdk, email=kjasdklfja, telefone=adsfj, nascimento=2005-02-02, endereco=afdas}
2005-04-04 14:29:49,484 DEBUG hibernate.impl.Printer -> Amigo{nome=jo, celular=98375518, email=jo@uol.com.br, telefone=46364280, nascimento=1956-11-05, endereco=uniao}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=TESTEADSJF, celular=KJFASDKLF, email=KJASDKJFK, telefone=ASDKLF, nascimento=2005-01-01, endereco=ASDKLFJ}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Mauricio, celular=laçksdfjalk, email=ljasdkfj, telefone=asjsdklfj, nascimento=null, endereco=ajdlksjfk}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Solutec Consultoria, celular=11-98685828, email=solutec@solutecconsultoria.com.br, telefone=11-46363508, nascimento=2004-02-01, endereco=Rua: Rinaldo Lucarini, nº50}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=, celular=, email=, telefone=, nascimento=null, endereco=}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Hackers, celular=kjasdklfj, email=kjaskldlfjaskj’, telefone=kjasdkflj, nascimento=2003-02-01, endereco=fkajsdkf}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Jo, celular=98375518, email=jo@uol, telefone=463642802, nascimento=1956-11-05, endereco=união}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Rodrigo Rocha, celular=jasdjfaksdj, email=dkfjdskfjkas, telefone=dkfsdkjf, nascimento=null, endereco=fklasdjklj}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Jovelina Rocha Silva, celular=98989999, email=fasdfa, telefone=46364280, nascimento=1956-11-05, endereco=União}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Jô, celular=9999999, email=jo@uol.com.br, telefone=46364280, nascimento=1956-11-05, endereco=União 800}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=teste2, celular=ccccccccccc, email=eeeeeeee, telefone=ttttttttttt, nascimento=2002-01-01, endereco=eeeeeeee}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Rodrigo Rocha Silva, celular=4636555, email=dfasdfads, telefone=46364636, nascimento=1981-03-30, endereco=Orquidêa}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=Solutec, celular=98989985, email=solutec@solutec, telefone=46363508, nascimento=2005-01-01, endereco=rinaldo}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> Amigo{nome=TESTE3, celular=ccccccccccc, email=eeeeeeeeee, telefone=tttttttttt, nascimento=2002-01-01, endereco=eeeeeee}
2005-04-04 14:29:49,500 DEBUG hibernate.impl.Printer -> more…
2005-04-04 14:29:49,500 DEBUG hibernate.impl.SessionImpl -> executing flush
2005-04-04 14:29:49,500 DEBUG hibernate.impl.SessionImpl -> post flush
2005-04-04 14:29:49,500 DEBUG hibernate.impl.SessionImpl -> transaction completion
java.lang.ClassCastException
at Lab.jBconsultaActionPerformed(Lab.java:204)
at Lab.access$100(Lab.java:14)
at Lab$2.actionPerformed(Lab.java:88)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
at java.awt.Component.processMouseEvent(Component.java:5100)
at java.awt.Component.processEvent(Component.java:4897)
at java.awt.Container.processEvent(Container.java:1569)
at java.awt.Component.dispatchEventImpl(Component.java:3615)
at java.awt.Container.dispatchEventImpl(Container.java:1627)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
at java.awt.Container.dispatchEventImpl(Container.java:1613)
at java.awt.Window.dispatchEventImpl(Window.java:1606)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

[/code]

A string que eu estou passando é a seguinte:
from amigos in class Amigo

Alguém pode me ajudar?

tenta por o caminho inteiro da classe Amigo, eu geralmente uso assim

from br.com.guj.Amigos

[quote=ManchesteR]tenta por o caminho inteiro da classe Amigo, eu geralmente uso assim

from br.com.guj.Amigos

mas depois do from não é a tabela do bd?

Os dados do banco vc inseriu usando o Hibernate?

Verifique se não tá rolando alguma inconsistência no banco…

Ve se os tipos de campos estão corretos, se não tem alguma data inválida, ou uma string onde deveria ser inteiro…

[]'s

Está correto deletei os dados e deixei somente um com o campo data null e mesmo erro

Aparentemente seu problema não tem nada a ver com o Hibernate e sim com o seu código Swing :slight_smile:

[quote=rocha] java.lang.ClassCastException at Lab.jBconsultaActionPerformed(Lab.java:204) at Lab.access$100(Lab.java:14) at Lab$2.actionPerformed(Lab.java:88) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786) at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839) at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420) at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245) at java.awt.Component.processMouseEvent(Component.java:5100) at java.awt.Component.processEvent(Component.java:4897) at java.awt.Container.processEvent(Container.java:1569) at java.awt.Component.dispatchEventImpl(Component.java:3615) at java.awt.Container.dispatchEventImpl(Container.java:1627) at java.awt.Component.dispatchEvent(Component.java:3477) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128) at java.awt.Container.dispatchEventImpl(Container.java:1613) at java.awt.Window.dispatchEventImpl(Window.java:1606) at java.awt.Component.dispatchEvent(Component.java:3477) at java.awt.EventQueue.dispatchEvent(EventQueue.java:456) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137) at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
[/quote]

Mande pra gente o código do método Lab.jBconsultaActionPerformed com o número de cada linha ao lado de cada instrução.

segue o método que é excutado:

private void jBconsultaActionPerformed(java.awt.event.ActionEvent evt) { List list = controle.List("from amigos in class Amigo"); jLabel.setText((String)list.get(0)); // TODO add your handling code here: }

mais informações… a classe se chama Amigo, o dao AmigoDAO e a tabela no banco AMIGOS…

[quote=rocha][quote=ManchesteR]tenta por o caminho inteiro da classe Amigo, eu geralmente uso assim

from br.com.guj.Amigos

mas depois do from não é a tabela do bd?[/quote]

EU não uso a tabela do BD explicitamente, ela está declarada dentro do arquivo .hbm.xml da sua classe

Você não mandou o número da linha do lado, mas tudo bem… :slight_smile:

O problema está aqui:

[quote=rocha] jLabel.setText((String)list.get(0)); [/quote]

O que você tem na sua List é uma instância de Amigo e não de String. Supondo que você queira exibir uma propriedade chamada nome, você faria algo como:

         jLabel.setText(((Amigo)list.get(0)).getNome());

Dica: se você está experimentando com uma tecnologia, faça isso num ambiente que você domina totalmente, começando com um exemplo bem simples. Nesse caso específico, não use Swing :wink:

mister__m Deu certo valeu pela força… o problema é que estou tendo que estudar swing e hibernate… junto… rsrs… Valeu mesmo

Estude usando duas bases de código diferentes, assim você tem menos coisas pra se concentrar quando algo der errado :slight_smile: