-->
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.  [ 2 posts ] 
Author Message
 Post subject: Query is returning incorrect number of child records.
PostPosted: Wed Sep 17, 2003 11:53 am 
Newbie

Joined: Wed Sep 17, 2003 11:26 am
Posts: 1
Following is the part of the mapping file:
=========================
<class name="com.dfs.fraud.persist.ApplicantRecord" table="APPLICANT">
<id name="id" type="java.lang.String" length="36">
<generator class="uuid.hex"/>
</id>
<property name="ssn" column="social_security_num" length="11" type="java.lang.String" not-null="true" unique="true"> </property>
<property name="createdOn" column="created_on" type="java.util.Date" not-null="true"> </property>
<property name="createdBy" column="created_by" length="20" type="java.lang.String" not-null="false"> </property>
<set name="applications" table="APPLICATION" inverse="true" lazy="false" cascade="all">
<key column="applicant_id"/>
<one-to-many class="com.dfs.fraud.persist.ApplicationRecord"/>
</set>
</class>
<class name="com.dfs.fraud.persist.ApplicationRecord" table="APPLICATION">
<id name="id" type="java.lang.String" length="32">
<generator class="uuid.hex"/>
</id>
<many-to-one
name="applicant"
class="com.dfs.fraud.persist.ApplicantRecord"
column="applicant_id"
not-null="true"/>
</class>

The following query is returning incorrect number of of child records -- is returning both the child records for the db. (expected to return just one child record)
===========================
"select applicant from com.dfs.fraud.persist.ApplicantRecord applicant " +
" join applicant.applications application where application.ani=?";

Following is the log for the Junit test:
========================
<?xml version="1.0" encoding="UTF-8" ?>
- <testsuite name="com.dfs.fraud.persist.test.ApplicantMapperTest" tests="7" failures="1" errors="0" time="2.672">
- <properties>
<property name="java.vendor" value="Sun Microsystems Inc." />
<property name="@ldap.groupFilter@" value="(cn=*)" />
<property name="@default.hibernate.connection.password@" value="frauddata" />
<property name="jdbc20ext.jar" value="/javasoft/lib/jdbc2_0-stdext.jar" />
<property name="@weblogic.server.name@" value="guardianServer" />
<property name="lib" value="D:\Projects\Guardian/lib" />
<property name="@experian.inwallet.url@" value="http://www.experian.com/authentication/servlets/HttpInWalletTestXml" />
<property name="@ldap.providerUrl@" value="ldap://amer.dell.com" />
<property name="os.name" value="Windows 2000" />
<property name="distpath.project" value="D:\Projects\Guardian/dist" />
<property name="sun.boot.class.path" value="D:\Apps\jdk1.3.1_03\jre\lib\rt.jar;D:\Apps\jdk1.3.1_03\jre\lib\i18n.jar;D:\Apps\jdk1.3.1_03\jre\lib\sunrsasign.jar;D:\Apps\jdk1.3.1_03\jre\classes" />
<property name="test.schema.key" value="cruiseControl" />
<property name="build.dir.src" value="D:\Projects\Guardian/build/src" />
<property name="TODAY" value="17-Sep-2003" />
<property name="@guardian2.0createdb.hibernate.connection.password@" value="<password>" />
<property name="java.vm.specification.vendor" value="Sun Microsystems Inc." />
<property name="ant.home" value="tools\ant" />
<property name="@ldap.groupDN@" value="OU=Global Groups,OU=Groups,OU=Users,OU=Dell Financial Services,DC=amer,DC=dell,DC=com" />
<property name="java.runtime.version" value="1.3.1_03-b03" />
<property name="@default.hibernate2.dialect@" value="net.sf.hibernate.dialect.OracleDialect" />
<property name="weblogic.appdomain.home" value="D:\Projects\Guardian\server\bea\weblogic700\appdomain" />
<property name="doc.path" value="D:\Projects\Guardian/doc/api" />
<property name="@default.hibernate2.connection.password@" value="fr04" />
<property name="@guardian2.0createdb.hibernate.dialect@" value="cirrus.hibernate.sql.OracleDialect" />
<property name="user.name" value="Muralidhar_Muni" />
<property name="@weblogic.http.listen_port@" value="8080" />
<property name="@default.hibernate.dialect@" value="cirrus.hibernate.sql.OracleDialect" />
<property name="@create-frauddb.hibernate.connection.driver_class@" value="oracle.jdbc.driver.OracleDriver" />
<property name="@ldap.securityCredentials@" value="wmdev1" />
<property name="build.dir" value="D:\Projects\Guardian/build" />
<property name="@create-frauddb.hibernate.connection.username@" value="fraud_data" />
<property name="@experian.username@" value="EV0061A1" />
<property name="@experian.proxy.host@" value="ausdfswmrapd02" />
<property name="build.dir.descriptors" value="D:\Projects\Guardian/build/ejb/META-INF" />
<property name="user.language" value="en" />
<property name="sun.boot.library.path" value="D:\Apps\jdk1.3.1_03\jre\bin" />
<property name="@ldap.baseDC@" value="DC=amer,DC=dell,DC=com" />
<property name="ant.project.name" value="Guardian" />
<property name="DSTAMP" value="20030917" />
<property name="java.version" value="1.3.1_03" />
<property name="test.to.run" value="ApplicantMapperTest" />
<property name="user.timezone" value="" />
<property name="@odsdb.hibernate.connection.password@" value="duser" />
<property name="sun.cpu.isalist" value="pentium i486 i386" />
<property name="@odsdb.hibernate.connection.url@" value="jdbc:oracle:thin:@salesodsdev1.us.dell.com:1521:odsdv" />
<property name="build.dir.classes" value="D:\Projects\Guardian/build/classes" />
<property name="file.encoding.pkg" value="sun.io" />
<property name="file.separator" value="\" />
<property name="java.specification.name" value="Java Platform API Specification" />
<property name="java.class.version" value="47.0" />
<property name="weblogic.home" value="D:\Projects\Guardian\server\bea\weblogic700" />
<property name="label.number" value="165" />
<property name="java.home" value="D:\Apps\jdk1.3.1_03\jre" />
<property name="java.vm.info" value="interpreted mode" />
<property name="@default.hibernate2.connection.driver_class@" value="oracle.jdbc.driver.OracleDriver" />
<property name="ant.file" value="d:\Projects\Guardian\build.xml" />
<property name="os.version" value="5.0" />
<property name="@guardian2.0createdb.hibernate.connection.url@" value="jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD" />
<property name="doc.src" value="D:\Projects\Guardian/src" />
<property name="tools" value="D:\Projects\Guardian/tools" />
<property name="@weblogic.ssl.listen_port@" value="8081" />
<property name="default.install.dir" value="Guardian" />
<property name="java.awt.fonts" value="" />
<property name="path.separator" value=";" />
<property name="java.vm.version" value="1.3.1_03-b03" />
<property name="@guardian2.0db.hibernate.connection.password@" value="<password>" />
<property name="servlet.jar" value="/javasoft/lib/servlet.jar" />
<property name="@guardian2.0createdb.hibernate.connection.username@" value="<userid>" />
<property name="@frauddb.hibernate.connection.username@" value="fraud_data" />
<property name="@default.hibernate.connection.username@" value="fraud_data" />
<property name="java.awt.printerjob" value="sun.awt.windows.WPrinterJob" />
<property name="sun.io.unicode.encoding" value="UnicodeLittle" />
<property name="@guardian2.0db.hibernate.connection.url@" value="jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD" />
<property name="awt.toolkit" value="sun.awt.windows.WToolkit" />
<property name="oc4j.folder" value="D:\Projects\Guardian/server/oc4j" />
<property name="build.dir.tools" value="D:\Projects\Guardian/build/tools/classes" />
<property name="@frauddb.hibernate.connection.driver_class@" value="oracle.jdbc.driver.OracleDriver" />
<property name="@weblogic.domain.name@" value="appdomain" />
<property name="@default.hibernate.connection.driver_class@" value="oracle.jdbc.driver.OracleDriver" />
<property name="user.home" value="C:\Documents and Settings\muralidhar_muni" />
<property name="@create-frauddb.hibernate.connection.url@" value="jdbc:oracle:thin:@AUSDFSRAMDEV1:1522:RAMD" />
<property name="@odsdb.hibernate.connection.driver_class@" value="oracle.jdbc.driver.OracleDriver" />
<property name="java.specification.vendor" value="Sun Microsystems Inc." />
<property name="project.distname" value="Guardian" />
<property name="@default.hibernate.connection.url@" value="jdbc:oracle:thin:@AUSDFSRAMDEV1:1522:RAMD" />
<property name="test.to.run.remote" value="*Remote*Test" />
<property name="java.vendor.url" value="http://java.sun.com/" />
<property name="java.library.path" value="D:\Apps\jdk1.3.1_03\jre\bin;.;C:\WINNT\System32;C:\WINNT;tools\ant\bin;D:\Apps\jdk1.3.1_03\bin;.;~\cygwin\bin;~\bin;d:\usr\home\cygwin\bin;d:\Apps\jdk1.3.1_03\bin;d:\apps\MKSTOO~1\bin;d:\apps\MKSTOO~1\bin\X11;d:\apps\MKSTOO~1\mksnt;d:\Oracle\bin;c:\WINNT\system32;c:\WINNT;c:\WINNT\System32\Wbem;d:\Apps\Keyfile Corp\Active Document Workspace\INSO Viewers;c:\Program Files\Microsoft SQL Server\80\Tools\BINN;d:\Apps\Mercury Interactive\LoadRunner\bin;p:\" />
<property name="@default.hibernate2.connection.username@" value="fr04" />
<property name="java.vm.vendor" value="Sun Microsystems Inc." />
<property name="@create-frauddb.hibernate.dialect@" value="cirrus.hibernate.sql.OracleDialect" />
<property name="java.runtime.name" value="Java(TM) 2 Runtime Environment, Standard Edition" />
<property name="ant.version" value="Apache Ant version 1.5.1 compiled on October 2 2002" />
<property name="java.class.path" value="D:\Projects\Guardian\lib\cglib-1.0.jar;D:\Projects\Guardian\lib\cglib-asm.jar;D:\Projects\Guardian\lib\classes12.zip;D:\Projects\Guardian\lib\commons-beanutils.jar;D:\Projects\Guardian\lib\commons-collections.jar;D:\Projects\Guardian\lib\commons-dbcp.jar;D:\Projects\Guardian\lib\commons-digester.jar;D:\Projects\Guardian\lib\commons-fileupload.jar;D:\Projects\Guardian\lib\commons-lang-1.0-mod.jar;D:\Projects\Guardian\lib\commons-logging-api.jar;D:\Projects\Guardian\lib\commons-logging.jar;D:\Projects\Guardian\lib\commons-pool.jar;D:\Projects\Guardian\lib\commons-resources.jar;D:\Projects\Guardian\lib\commons-validator.jar;D:\Projects\Guardian\lib\dfs-commons-arch.jar;D:\Projects\Guardian\lib\dfs-commons-multitier.jar;D:\Projects\Guardian\lib\dom4j.jar;D:\Projects\Guardian\lib\fraud.jar;D:\Projects\Guardian\lib\hibernate-tools.jar;D:\Projects\Guardian\lib\hibernate.jar;D:\Projects\Guardian\lib\hibernate2.jar;D:\Projects\Guardian\lib\hsqldb.jar;D:\Projects\Guardian\lib\j2ee.jar;D:\Projects\Guardian\lib\jakarta-oro.jar;D:\Projects\Guardian\lib\java-getopt-1.0.9.jar;D:\Projects\Guardian\lib\jcs.jar;D:\Projects\Guardian\lib\jdom.jar;D:\Projects\Guardian\lib\jmx\jmxri.jar;D:\Projects\Guardian\lib\jmx\jmxtools.jar;D:\Projects\Guardian\lib\junit.jar;D:\Projects\Guardian\lib\log4j-1.2.6.jar;D:\Projects\Guardian\lib\nls_charset12.zip;D:\Projects\Guardian\lib\odmg.jar;D:\Projects\Guardian\lib\struts.jar;D:\Projects\Guardian\lib\xalan.jar;D:\Projects\Guardian\lib\xbean.jar;D:\Projects\Guardian\lib\xercesImpl.jar;D:\Projects\Guardian\lib\xml-apis.jar;D:\Projects\Guardian\lib\xmlunit1.0.jar;D:\Projects\Guardian\build\classes;D:\Projects\Guardian\src;D:\Projects\Guardian\tools\ant\lib\junit.jar;D:\Projects\Guardian\tools\ant\lib\ant.jar;D:\Projects\Guardian\tools\ant\lib\optional.jar" />
<property name="@guardian2.0db.hibernate.connection.driver_class@" value="oracle.jdbc.driver.OracleDriver" />
<property name="project.version" value="1.1" />
<property name="TSTAMP" value="1040" />
<property name="@odsdb.hibernate.connection.username@" value="dfs_fraud_user" />
<property name="@ldap.securityPrincipal@" value="cn=ServiceDFSWMDev,OU=Service Accounts,OU=Users,OU=Dell Financial Services,DC=amer,DC=dell,DC=com" />
<property name="java.vm.specification.name" value="Java Virtual Machine Specification" />
<property name="@frauddb.hibernate.dialect@" value="cirrus.hibernate.sql.OracleDialect" />
<property name="log4j-jar" value="log4j-1.2.6.jar" />
<property name="OJB.bootLogLevel" value="INFO" />
<property name="java.vm.specification.version" value="1.0" />
<property name="sun.cpu.endian" value="little" />
<property name="@create-frauddb.hibernate.connection.password@" value="frauddata" />
<property name="@frauddb.hibernate.connection.url@" value="jdbc:oracle:thin:@AUSDFSRAMDEV1:1522:RAMD" />
<property name="java.io.tmpdir" value="c:\DOCUME~1\MURALI~1\LOCALS~1\Temp\" />
<property name="project.title" value="Guardian" />
<property name="@guardian2.0db.hibernate.dialect@" value="cirrus.hibernate.sql.OracleDialect" />
<property name="@experian.proxy.port@" value="443" />
<property name="@ldap.initialContextFactory@" value="com.sun.jndi.ldap.LdapCtxFactory" />
<property name="java.vendor.url.bug" value="http://java.sun.com/cgi-bin/bugreport.cgi" />
<property name="java.awt.graphicsenv" value="sun.awt.Win32GraphicsEnvironment" />
<property name="os.arch" value="x86" />
<property name="java.ext.dirs" value="D:\Apps\jdk1.3.1_03\jre\lib\ext" />
<property name="@default.hibernate2.connection.url@" value="jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD" />
<property name="user.dir" value="d:\Projects\Guardian" />
<property name="@experian.outwallet.url@" value="http://www.experian.com/authentication/servlets/HttpOutWalletTest" />
<property name="@experian.password@" value="TSTDLL61" />
<property name="line.separator" value="" />
<property name="java.vm.name" value="Java HotSpot(TM) Client VM" />
<property name="oc4j.jar" value="D:\Projects\Guardian/server/oc4j/j2ee/home/oc4j.jar" />
<property name="basedir" value="D:\Projects\Guardian" />
<property name="java.src" value="D:\Projects\Guardian/src" />
<property name="ant.java.version" value="1.3" />
<property name="@guardian2.0createdb.hibernate.connection.driver_class@" value="oracle.jdbc.driver.OracleDriver" />
<property name="file.encoding" value="Cp1252" />
<property name="user.region" value="US" />
<property name="@guardian2.0db.hibernate.connection.username@" value="<userid>" />
<property name="@odsdb.hibernate.dialect@" value="cirrus.hibernate.sql.OracleDialect" />
<property name="java.specification.version" value="1.3" />
<property name="@frauddb.hibernate.connection.password@" value="frauddata" />
</properties>
<testcase name="testSaveApplicantSSN1" time="1.828" />
<testcase name="testSaveApplicantSSN1_AddNewApplication" time="0.11" />
<testcase name="testFindApplicant" time="0.093" />
<testcase name="testFindApplicantsForSSN" time="0.157" />
- <testcase name="testFindApplicantsForAni" time="0.109">
<failure message="expected:<1> but was:<2>" type="junit.framework.AssertionFailedError">junit.framework.AssertionFailedError: expected:<1> but was:<2> at com.dfs.fraud.persist.test.ApplicantMapperTest.testFindApplicantsForAni(ApplicantMapperTest.java:174)</failure>
</testcase>
<testcase name="testFindApplicantsForEmailAddress" time="0.094" />
<testcase name="testFindApplicantsForIpAddress" time="0.093" />
- <system-out>
- <![CDATA[
INFO net.sf.hibernate.cfg.Environment - Hibernate 2.0.2
INFO net.sf.hibernate.cfg.Environment - loaded properties from resource hibernate.properties: {hibernate.connection.username=fraud_data, hibernate.connection.password=frauddata, hibernate.cglib.use_reflection_optimizer=true, hibernate.dialect=cirrus.hibernate.sql.OracleDialect, hibernate.connection.url=jdbc:oracle:thin:@AUSDFSRAMDEV1:1522:RAMD, hibernate.connection.driver_class=oracle.jdbc.driver.OracleDriver}
INFO net.sf.hibernate.cfg.Environment - using CGLIB reflection optimizer
INFO net.sf.hibernate.cfg.Environment - JVM proxy support: true
INFO net.sf.hibernate.cfg.Configuration - Configuration resource: /guardian-hibernate.cfg.xml
DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... on-2.0.dtd in classpath under net/sf/hibernate/
DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... on-2.0.dtd in classpath
DEBUG net.sf.hibernate.cfg.Configuration - show_sql=true
DEBUG net.sf.hibernate.cfg.Configuration - use_outer_join=true
DEBUG net.sf.hibernate.cfg.Configuration - connection.driver_class=oracle.jdbc.driver.OracleDriver
DEBUG net.sf.hibernate.cfg.Configuration - connection.username=fr04
DEBUG net.sf.hibernate.cfg.Configuration - connection.password=fr04
DEBUG net.sf.hibernate.cfg.Configuration - connection.url=jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD
DEBUG net.sf.hibernate.cfg.Configuration - dialect=net.sf.hibernate.dialect.OracleDialect
DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@3a6c83 [Attribute: name resource value "guardian-hibernate-mapping.hbm.xml"]
INFO net.sf.hibernate.cfg.Configuration - Mapping resource: guardian-hibernate-mapping.hbm.xml
DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
INFO net.sf.hibernate.cfg.Binder - Mapping class: com.dfs.fraud.persist.ApplicantRecord -> APPLICANT
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> id, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: ssn -> social_security_num, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: createdOn -> created_on, type: timestamp
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: createdBy -> created_by, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: applications, type: java.util.Set
INFO net.sf.hibernate.cfg.Binder - Mapping class: com.dfs.fraud.persist.ApplicationRecord -> APPLICATION
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> id, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: applicantType -> applicant_type, type: com.dfs.fraud.persist.ApplicantType
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: clientOrigin -> client_origin, type: com.dfs.fraud.persist.ClientOrigin
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: emailAddress -> email_address, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: firstName -> first_name, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: lastName -> last_name, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: middleName -> middle_name, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: resStreetAddress1 -> res_street_address1, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: resStreetAddress2 -> res_street_address2, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: resCity -> res_city, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: resState -> res_state, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: resZipcode -> res_zipcode, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: resZipcodeExt -> res_zipcode_ext, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: monthsAtResidence -> months_at_residence, type: integer
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: ani -> ani, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: ipAddress -> ip_address, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: phoneOneAreaCode -> phone1_area_code, type: integer
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: phoneOneExchange -> phone1_exchange, type: integer
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: phoneOneLineNumber -> phone1_line_number, type: integer
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: phoneTwoAreaCode -> phone2_area_code, type: integer
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: phoneTwoExchange -> phone2_exchange, type: integer
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: phoneTwoLineNumber -> phone2_line_number, type: integer
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: driversLicenceState -> drivers_license_state, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: driversLicenceNumber -> drivers_license_num, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateOfBirth -> date_of_birth, type: timestamp
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dfsCustomerNumber -> dfs_customer_num, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: domsCompanyNumber -> doms_company_num, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: shippingStreetAddressOne -> shipping_street_address1, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: shippingStreetAddressTwo -> shipping_street_address2, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: shippingCity -> shipping_city, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: shippingState -> shipping_state, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: shippingZipcode -> shipping_zipcode, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: shippingZipcodeExt -> shipping_zipcode_ext, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: billingStreetAddressOne -> billing_street_address1, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: billingStreetAddressTwo -> billing_street_address2, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: billingCity -> billing_city, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: billingState -> billing_state, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: billingZipcode -> billing_zipcode, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: billingZipcodeExt -> billing_zipcode_ext, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: createdOn -> created_on, type: timestamp
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: createdBy -> created_by, type: string
DEBUG net.sf.hibernate.cfg.Binder - Mapped property: applicant -> applicant_id, type: com.dfs.fraud.persist.ApplicantRecord
INFO net.sf.hibernate.cfg.Configuration - Configured SessionFactory: null
DEBUG net.sf.hibernate.cfg.Configuration - properties: {java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, hibernate.connection.password=fr04, sun.boot.library.path=D:\Apps\jdk1.3.1_03\jre\bin, java.vm.version=1.3.1_03-b03, hibernate.connection.username=fr04, java.vm.vendor=Sun Microsystems Inc., java.vendor.url=http://java.sun.com/, path.separator=;, java.vm.name=Java HotSpot(TM) Client VM, file.encoding.pkg=sun.io, use_outer_join=true, java.vm.specification.name=Java Virtual Machine Specification, user.dir=d:\Projects\Guardian, java.runtime.version=1.3.1_03-b03, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, basedir=D:\Projects\Guardian, os.arch=x86, java.io.tmpdir=c:\DOCUME~1\MURALI~1\LOCALS~1\Temp\, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., java.awt.fonts=, os.name=Windows 2000, java.library.path=D:\Apps\jdk1.3.1_03\jre\bin;.;C:\WINNT\System32;C:\WINNT;tools\ant\bin;D:\Apps\jdk1.3.1_03\bin;.;~\cygwin\bin;~\bin;d:\usr\home\cygwin\bin;d:\Apps\jdk1.3.1_03\bin;d:\apps\MKSTOO~1\bin;d:\apps\MKSTOO~1\bin\X11;d:\apps\MKSTOO~1\mksnt;d:\Oracle\bin;c:\WINNT\system32;c:\WINNT;c:\WINNT\System32\Wbem;d:\Apps\Keyfile Corp\Active Document Workspace\INSO Viewers;c:\Program Files\Microsoft SQL Server\80\Tools\BINN;d:\Apps\Mercury Interactive\LoadRunner\bin;p:\, java.specification.name=Java Platform API Specification, java.class.version=47.0, os.version=5.0, connection.password=fr04, user.home=C:\Documents and Settings\muralidhar_muni, user.timezone=America/Chicago, connection.username=fr04, java.awt.printerjob=sun.awt.windows.WPrinterJob, OJB.bootLogLevel=INFO, file.encoding=Cp1252, java.specification.version=1.3, hibernate.connection.driver_class=oracle.jdbc.driver.OracleDriver, show_sql=true, user.name=Muralidhar_Muni, java.class.path=D:\Projects\Guardian\lib\cglib-1.0.jar;D:\Projects\Guardian\lib\cglib-asm.jar;D:\Projects\Guardian\lib\classes12.zip;D:\Projects\Guardian\lib\commons-beanutils.jar;D:\Projects\Guardian\lib\commons-collections.jar;D:\Projects\Guardian\lib\commons-dbcp.jar;D:\Projects\Guardian\lib\commons-digester.jar;D:\Projects\Guardian\lib\commons-fileupload.jar;D:\Projects\Guardian\lib\commons-lang-1.0-mod.jar;D:\Projects\Guardian\lib\commons-logging-api.jar;D:\Projects\Guardian\lib\commons-logging.jar;D:\Projects\Guardian\lib\commons-pool.jar;D:\Projects\Guardian\lib\commons-resources.jar;D:\Projects\Guardian\lib\commons-validator.jar;D:\Projects\Guardian\lib\dfs-commons-arch.jar;D:\Projects\Guardian\lib\dfs-commons-multitier.jar;D:\Projects\Guardian\lib\dom4j.jar;D:\Projects\Guardian\lib\fraud.jar;D:\Projects\Guardian\lib\hibernate-tools.jar;D:\Projects\Guardian\lib\hibernate.jar;D:\Projects\Guardian\lib\hibernate2.jar;D:\Projects\Guardian\lib\hsqldb.jar;D:\Projects\Guardian\lib\j2ee.jar;D:\Projects\Guardian\lib\jakarta-oro.jar;D:\Projects\Guardian\lib\java-getopt-1.0.9.jar;D:\Projects\Guardian\lib\jcs.jar;D:\Projects\Guardian\lib\jdom.jar;D:\Projects\Guardian\lib\jmx\jmxri.jar;D:\Projects\Guardian\lib\jmx\jmxtools.jar;D:\Projects\Guardian\lib\junit.jar;D:\Projects\Guardian\lib\log4j-1.2.6.jar;D:\Projects\Guardian\lib\nls_charset12.zip;D:\Projects\Guardian\lib\odmg.jar;D:\Projects\Guardian\lib\struts.jar;D:\Projects\Guardian\lib\xalan.jar;D:\Projects\Guardian\lib\xbean.jar;D:\Projects\Guardian\lib\xercesImpl.jar;D:\Projects\Guardian\lib\xml-apis.jar;D:\Projects\Guardian\lib\xmlunit1.0.jar;D:\Projects\Guardian\build\classes;D:\Projects\Guardian\src;D:\Projects\Guardian\tools\ant\lib\junit.jar;D:\Projects\Guardian\tools\ant\lib\ant.jar;D:\Projects\Guardian\tools\ant\lib\optional.jar, hibernate.show_sql=true, java.vm.specification.version=1.0, java.home=D:\Apps\jdk1.3.1_03\jre, hibernate.dialect=net.sf.hibernate.dialect.OracleDialect, hibernate.connection.url=jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD, user.language=en, java.specification.vendor=Sun Microsystems Inc., awt.toolkit=sun.awt.windows.WToolkit, hibernate.cglib.use_reflection_optimizer=true, java.vm.info=interpreted mode, java.version=1.3.1_03, java.ext.dirs=D:\Apps\jdk1.3.1_03\jre\lib\ext, sun.boot.class.path=D:\Apps\jdk1.3.1_03\jre\lib\rt.jar;D:\Apps\jdk1.3.1_03\jre\lib\i18n.jar;D:\Apps\jdk1.3.1_03\jre\lib\sunrsasign.jar;D:\Apps\jdk1.3.1_03\jre\classes, java.vendor=Sun Microsystems Inc., connection.driver_class=oracle.jdbc.driver.OracleDriver, file.separator=\, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, sun.io.unicode.encoding=UnicodeLittle, sun.cpu.endian=little, hibernate.use_outer_join=true, user.region=US, connection.url=jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD, dialect=net.sf.hibernate.dialect.OracleDialect, sun.cpu.isalist=pentium i486 i386}
INFO net.sf.hibernate.cfg.Configuration - processing one-to-many association mappings
DEBUG net.sf.hibernate.cfg.Binder - Second pass for collection: com.dfs.fraud.persist.ApplicantRecord.applications
INFO net.sf.hibernate.cfg.Binder - Mapping collection: com.dfs.fraud.persist.ApplicantRecord.applications -> APPLICATION
DEBUG net.sf.hibernate.cfg.Binder - Mapped collection key: applicant_id, one-to-many: com.dfs.fraud.persist.ApplicationRecord
INFO net.sf.hibernate.cfg.Configuration - processing foreign key constraints
DEBUG net.sf.hibernate.cfg.Configuration - resolving reference to class: com.dfs.fraud.persist.ApplicantRecord
INFO net.sf.hibernate.impl.SessionFactoryImpl - building session factory
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - instantiating session factory with properties: {java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, hibernate.connection.password=fr04, sun.boot.library.path=D:\Apps\jdk1.3.1_03\jre\bin, java.vm.version=1.3.1_03-b03, hibernate.connection.username=fr04, java.vm.vendor=Sun Microsystems Inc., java.vendor.url=http://java.sun.com/, path.separator=;, java.vm.name=Java HotSpot(TM) Client VM, file.encoding.pkg=sun.io, use_outer_join=true, java.vm.specification.name=Java Virtual Machine Specification, user.dir=d:\Projects\Guardian, java.runtime.version=1.3.1_03-b03, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, basedir=D:\Projects\Guardian, os.arch=x86, java.io.tmpdir=c:\DOCUME~1\MURALI~1\LOCALS~1\Temp\, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., java.awt.fonts=, os.name=Windows 2000, java.library.path=D:\Apps\jdk1.3.1_03\jre\bin;.;C:\WINNT\System32;C:\WINNT;tools\ant\bin;D:\Apps\jdk1.3.1_03\bin;.;~\cygwin\bin;~\bin;d:\usr\home\cygwin\bin;d:\Apps\jdk1.3.1_03\bin;d:\apps\MKSTOO~1\bin;d:\apps\MKSTOO~1\bin\X11;d:\apps\MKSTOO~1\mksnt;d:\Oracle\bin;c:\WINNT\system32;c:\WINNT;c:\WINNT\System32\Wbem;d:\Apps\Keyfile Corp\Active Document Workspace\INSO Viewers;c:\Program Files\Microsoft SQL Server\80\Tools\BINN;d:\Apps\Mercury Interactive\LoadRunner\bin;p:\, java.specification.name=Java Platform API Specification, java.class.version=47.0, os.version=5.0, user.home=C:\Documents and Settings\muralidhar_muni, connection.password=fr04, user.timezone=America/Chicago, java.awt.printerjob=sun.awt.windows.WPrinterJob, connection.username=fr04, OJB.bootLogLevel=INFO, file.encoding=Cp1252, java.specification.version=1.3, hibernate.connection.driver_class=oracle.jdbc.driver.OracleDriver, show_sql=true, java.class.path=D:\Projects\Guardian\lib\cglib-1.0.jar;D:\Projects\Guardian\lib\cglib-asm.jar;D:\Projects\Guardian\lib\classes12.zip;D:\Projects\Guardian\lib\commons-beanutils.jar;D:\Projects\Guardian\lib\commons-collections.jar;D:\Projects\Guardian\lib\commons-dbcp.jar;D:\Projects\Guardian\lib\commons-digester.jar;D:\Projects\Guardian\lib\commons-fileupload.jar;D:\Projects\Guardian\lib\commons-lang-1.0-mod.jar;D:\Projects\Guardian\lib\commons-logging-api.jar;D:\Projects\Guardian\lib\commons-logging.jar;D:\Projects\Guardian\lib\commons-pool.jar;D:\Projects\Guardian\lib\commons-resources.jar;D:\Projects\Guardian\lib\commons-validator.jar;D:\Projects\Guardian\lib\dfs-commons-arch.jar;D:\Projects\Guardian\lib\dfs-commons-multitier.jar;D:\Projects\Guardian\lib\dom4j.jar;D:\Projects\Guardian\lib\fraud.jar;D:\Projects\Guardian\lib\hibernate-tools.jar;D:\Projects\Guardian\lib\hibernate.jar;D:\Projects\Guardian\lib\hibernate2.jar;D:\Projects\Guardian\lib\hsqldb.jar;D:\Projects\Guardian\lib\j2ee.jar;D:\Projects\Guardian\lib\jakarta-oro.jar;D:\Projects\Guardian\lib\java-getopt-1.0.9.jar;D:\Projects\Guardian\lib\jcs.jar;D:\Projects\Guardian\lib\jdom.jar;D:\Projects\Guardian\lib\jmx\jmxri.jar;D:\Projects\Guardian\lib\jmx\jmxtools.jar;D:\Projects\Guardian\lib\junit.jar;D:\Projects\Guardian\lib\log4j-1.2.6.jar;D:\Projects\Guardian\lib\nls_charset12.zip;D:\Projects\Guardian\lib\odmg.jar;D:\Projects\Guardian\lib\struts.jar;D:\Projects\Guardian\lib\xalan.jar;D:\Projects\Guardian\lib\xbean.jar;D:\Projects\Guardian\lib\xercesImpl.jar;D:\Projects\Guardian\lib\xml-apis.jar;D:\Projects\Guardian\lib\xmlunit1.0.jar;D:\Projects\Guardian\build\classes;D:\Projects\Guardian\src;D:\Projects\Guardian\tools\ant\lib\junit.jar;D:\Projects\Guardian\tools\ant\lib\ant.jar;D:\Projects\Guardian\tools\ant\lib\optional.jar, user.name=Muralidhar_Muni, hibernate.show_sql=true, java.vm.specification.version=1.0, java.home=D:\Apps\jdk1.3.1_03\jre, hibernate.connection.url=jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD, hibernate.dialect=net.sf.hibernate.dialect.OracleDialect, java.specification.vendor=Sun Microsystems Inc., user.language=en, awt.toolkit=sun.awt.windows.WToolkit, java.vm.info=interpreted mode, hibernate.cglib.use_reflection_optimizer=true, java.version=1.3.1_03, java.ext.dirs=D:\Apps\jdk1.3.1_03\jre\lib\ext, sun.boot.class.path=D:\Apps\jdk1.3.1_03\jre\lib\rt.jar;D:\Apps\jdk1.3.1_03\jre\lib\i18n.jar;D:\Apps\jdk1.3.1_03\jre\lib\sunrsasign.jar;D:\Apps\jdk1.3.1_03\jre\classes, java.vendor=Sun Microsystems Inc., file.separator=\, connection.driver_class=oracle.jdbc.driver.OracleDriver, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeLittle, hibernate.use_outer_join=true, user.region=US, connection.url=jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD, sun.cpu.isalist=pentium i486 i386, dialect=net.sf.hibernate.dialect.OracleDialect}
INFO net.sf.hibernate.dialect.Dialect - Using dialect: net.sf.hibernate.dialect.OracleDialect
INFO net.sf.hibernate.connection.DriverManagerConnectionProvider - Hibernate connection pool size: 20
INFO net.sf.hibernate.connection.DriverManagerConnectionProvider - using driver: oracle.jdbc.driver.OracleDriver at URL: jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD
INFO net.sf.hibernate.connection.DriverManagerConnectionProvider - connection properties: {user=fr04, password=fr04}
INFO net.sf.hibernate.impl.SessionFactoryImpl - Use outer join fetching: true
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - total checked-out connections: 0
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - opening new JDBC connection
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - created connection to: jdbc:oracle:thin:@AUSDFSWMRAMDEV:1521:SMBRAMD, Isolation Level: 2
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - returning connection to pool, pool size: 1
INFO net.sf.hibernate.impl.SessionFactoryImpl - Use scrollable result sets: true
INFO net.sf.hibernate.impl.SessionFactoryImpl - JDBC 2 max batch size: 15
INFO net.sf.hibernate.impl.SessionFactoryImpl - echoing all SQL to stdout
DEBUG net.sf.hibernate.impl.SessionFactoryObjectFactory - initializing class SessionFactoryObjectFactory
DEBUG net.sf.hibernate.impl.SessionFactoryObjectFactory - registered: 8a8db552f7b0359b00f7b0359f5b0000 (unnamed)
INFO net.sf.hibernate.impl.SessionFactoryObjectFactory - no JDNI name configured
INFO net.sf.hibernate.impl.SessionFactoryImpl - Query language substitutions: {}
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - instantiated session factory
DEBUG net.sf.hibernate.impl.SessionImpl - opened session
DEBUG net.sf.hibernate.impl.SessionImpl - find: from com.dfs.fraud.persist.ApplicantRecord as a where a.ssn=?
DEBUG net.sf.hibernate.impl.SessionImpl - parameters: 223121231
DEBUG net.sf.hibernate.hql.QueryTranslator - compiling query
DEBUG net.sf.hibernate.impl.SessionImpl - flushing session
DEBUG net.sf.hibernate.impl.SessionImpl - Flushing entities and processing referenced collections
DEBUG net.sf.hibernate.impl.SessionImpl - Processing unreferenced collections
DEBUG net.sf.hibernate.impl.SessionImpl - Scheduling collection removes/(re)creates/updates
DEBUG net.sf.hibernate.impl.SessionImpl - Flushed: 0 insertions, 0 updates, 0 deletions to 0 objects
DEBUG net.sf.hibernate.impl.SessionImpl - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
DEBUG net.sf.hibernate.impl.SessionImpl - Dont need to execute flush
DEBUG net.sf.hibernate.hql.QueryTranslator - HQL: from com.dfs.fraud.persist.ApplicantRecord as a where a.ssn=?
DEBUG net.sf.hibernate.hql.QueryTranslator - SQL: select applican0_.id as id, applican0_.social_security_num as social_s2_, applican0_.created_on as created_on, applican0_.created_by as created_by from APPLICANT applican0_ where (applican0_.social_security_num=? )
DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - total checked-out connections: 0
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - using pooled JDBC connection, pool size: 0
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - prepared statement get: select applican0_.id as id, applican0_.social_security_num as social_s2_, applican0_.created_on as created_on, applican0_.created_by as created_by from APPLICANT applican0_ where (applican0_.social_security_num=? )
Hibernate: select applican0_.id as id, applican0_.social_security_num as social_s2_, applican0_.created_on as created_on, applican0_.created_by as created_by from APPLICANT applican0_ where (applican0_.social_security_num=? )
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - preparing statement
DEBUG net.sf.hibernate.type.StringType - binding '223121231' to parameter: 1
DEBUG net.sf.hibernate.loader.Loader - processing result set
DEBUG net.sf.hibernate.loader.Loader - done processing result set (0 rows)
DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - closing statement
DEBUG net.sf.hibernate.loader.Loader - total objects hydrated: 0
DEBUG net.sf.hibernate.engine.Cascades - unsaved-value strategy NULL
DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance with id: null
DEBUG net.sf.hibernate.impl.SessionImpl - saving [com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001]
DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: com.dfs.fraud.persist.ApplicantRecord
DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: com.dfs.fraud.persist.ApplicantRecord
DEBUG net.sf.hibernate.impl.SessionImpl - Wrapped collection in role: com.dfs.fraud.persist.ApplicantRecord.applications
DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: com.dfs.fraud.persist.ApplicantRecord
DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: com.dfs.fraud.persist.ApplicantRecord.applications
DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
DEBUG net.sf.hibernate.engine.Cascades - unsaved-value strategy NULL
DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance with id: null
DEBUG net.sf.hibernate.impl.SessionImpl - saving [com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002]
DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: com.dfs.fraud.persist.ApplicantRecord
DEBUG net.sf.hibernate.impl.SessionImpl - flushing session
DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: com.dfs.fraud.persist.ApplicantRecord
DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: com.dfs.fraud.persist.ApplicantRecord.applications
DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() persistent instance
DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: com.dfs.fraud.persist.ApplicantRecord
DEBUG net.sf.hibernate.impl.SessionImpl - Flushing entities and processing referenced collections
DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [com.dfs.fraud.persist.ApplicantRecord.applications#8a8db552f7b0359b00f7b0359fc90001], was: [<unreferenced>]
DEBUG net.sf.hibernate.impl.SessionImpl - Processing unreferenced collections
DEBUG net.sf.hibernate.impl.SessionImpl - Scheduling collection removes/(re)creates/updates
DEBUG net.sf.hibernate.impl.SessionImpl - Flushed: 2 insertions, 0 updates, 0 deletions to 2 objects
DEBUG net.sf.hibernate.impl.SessionImpl - Flushed: 1 (re)creations, 0 updates, 0 removals to 1 collections
DEBUG net.sf.hibernate.impl.SessionImpl - executing flush
DEBUG net.sf.hibernate.persister.EntityPersister - Inserting entity: com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001
DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - prepared statement get: insert into APPLICANT (social_security_num, created_on, created_by, id) values (?, ?, ?, ?)
Hibernate: insert into APPLICANT (social_security_num, created_on, created_by, id) values (?, ?, ?, ?)
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - preparing statement
DEBUG net.sf.hibernate.persister.EntityPersister - Dehydrating entity: com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001
DEBUG net.sf.hibernate.type.StringType - binding '223121231' to parameter: 1
DEBUG net.sf.hibernate.type.TimestampType - binding '17 September 2003 10:40:26' to parameter: 2
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 3
DEBUG net.sf.hibernate.type.StringType - binding '8a8db552f7b0359b00f7b0359fc90001' to parameter: 4
DEBUG net.sf.hibernate.impl.BatcherImpl - Adding to batch
DEBUG net.sf.hibernate.persister.EntityPersister - Inserting entity: com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002
DEBUG net.sf.hibernate.impl.BatcherImpl - Executing batch size: 1
DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - closing statement
DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - prepared statement get: insert into APPLICATION (applicant_type, client_origin, email_address, first_name, last_name, middle_name, res_street_address1, res_street_address2, res_city, res_state, res_zipcode, res_zipcode_ext, months_at_residence, ani, ip_address, phone1_area_code, phone1_exchange, phone1_line_number, phone2_area_code, phone2_exchange, phone2_line_number, drivers_license_state, drivers_license_num, date_of_birth, dfs_customer_num, doms_company_num, shipping_street_address1, shipping_street_address2, shipping_city, shipping_state, shipping_zipcode, shipping_zipcode_ext, billing_street_address1, billing_street_address2, billing_city, billing_state, billing_zipcode, billing_zipcode_ext, created_on, created_by, applicant_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Hibernate: insert into APPLICATION (applicant_type, client_origin, email_address, first_name, last_name, middle_name, res_street_address1, res_street_address2, res_city, res_state, res_zipcode, res_zipcode_ext, months_at_residence, ani, ip_address, phone1_area_code, phone1_exchange, phone1_line_number, phone2_area_code, phone2_exchange, phone2_line_number, drivers_license_state, drivers_license_num, date_of_birth, dfs_customer_num, doms_company_num, shipping_street_address1, shipping_street_address2, shipping_city, shipping_state, shipping_zipcode, shipping_zipcode_ext, billing_street_address1, billing_street_address2, billing_city, billing_state, billing_zipcode, billing_zipcode_ext, created_on, created_by, applicant_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - preparing statement
DEBUG net.sf.hibernate.persister.EntityPersister - Dehydrating entity: com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002
DEBUG net.sf.hibernate.type.PersistentEnumType - binding '0' to parameter: 1
DEBUG net.sf.hibernate.type.PersistentEnumType - binding '0' to parameter: 2
DEBUG net.sf.hibernate.type.StringType - binding 'dfs1@dfs.com' to parameter: 3
DEBUG net.sf.hibernate.type.StringType - binding 'First Name' to parameter: 4
DEBUG net.sf.hibernate.type.StringType - binding 'Last Name' to parameter: 5
DEBUG net.sf.hibernate.type.StringType - binding 'Middle Name' to parameter: 6
DEBUG net.sf.hibernate.type.StringType - binding 'Res Street Address1' to parameter: 7
DEBUG net.sf.hibernate.type.StringType - binding 'Res Street Address2' to parameter: 8
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 9
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 10
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 11
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 12
DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 13
DEBUG net.sf.hibernate.type.StringType - binding '5127231121' to parameter: 14
DEBUG net.sf.hibernate.type.StringType - binding '123.123.123.123' to parameter: 15
DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 16
DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 17
DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 18
DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 19
DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 20
DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 21
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 22
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 23
DEBUG net.sf.hibernate.type.TimestampType - binding null to parameter: 24
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 25
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 26
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 27
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 28
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 29
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 30
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 31
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 32
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 33
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 34
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 35
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 36
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 37
DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 38
DEBUG net.sf.hibernate.type.TimestampType - binding '17 September 2003 10:40:26' to parameter: 39
DEBUG net.sf.hibernate.type.StringType - binding 'JUnit TestCase' to parameter: 40
DEBUG net.sf.hibernate.type.StringType - binding '8a8db552f7b0359b00f7b0359fc90001' to parameter: 41
DEBUG net.sf.hibernate.type.StringType - binding '8a8db552f7b0359b00f7b0359fd80002' to parameter: 42
DEBUG net.sf.hibernate.impl.BatcherImpl - Adding to batch
DEBUG net.sf.hibernate.impl.BatcherImpl - Executing batch size: 1
DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - closing statement
DEBUG net.sf.hibernate.impl.SessionImpl - post flush
DEBUG net.sf.hibernate.impl.SessionImpl - closing session
DEBUG net.sf.hibernate.impl.SessionImpl - disconnecting session
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - returning connection to pool, pool size: 1
DEBUG net.sf.hibernate.impl.SessionImpl - transaction completion
DEBUG net.sf.hibernate.impl.SessionImpl - opened session
DEBUG net.sf.hibernate.impl.SessionImpl - find: from com.dfs.fraud.persist.ApplicantRecord as a where a.ssn=?
DEBUG net.sf.hibernate.impl.SessionImpl - parameters: 223121231
DEBUG net.sf.hibernate.hql.QueryTranslator - compiling query
DEBUG net.sf.hibernate.impl.SessionImpl - flushing session
DEBUG net.sf.hibernate.impl.SessionImpl - Flushing entities and processing referenced collections
DEBUG net.sf.hibernate.impl.SessionImpl - Processing unreferenced collections
DEBUG net.sf.hibernate.impl.SessionImpl - Scheduling collection removes/(re)creates/updates
DEBUG net.sf.hibernate.impl.SessionImpl - Flushed: 0 insertions, 0 updates, 0 deletions to 0 objects
DEBUG net.sf.hibernate.impl.SessionImpl - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections
DEBUG net.sf.hibernate.impl.SessionImpl - Dont need to execute flush
DEBUG net.sf.hibernate.hql.QueryTranslator - HQL: from com.dfs.fraud.persist.ApplicantRecord as a where a.ssn=?
DEBUG net.sf.hibernate.hql.QueryTranslator - SQL: select applican0_.id as id, applican0_.social_security_num as social_s2_, applican0_.created_on as created_on, applican0_.created_by as created_by from APPLICANT applican0_ where (applican0_.social_security_num=? )
DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - total checked-out connections: 0
DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - using pooled JDBC connection, pool size: 0
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - prepared statement get: select applican0_.id as id, applican0_.social_security_num as social_s2_, applican0_.created_on as created_on, applican0_.created_by as created_by from APPLICANT applican0_ where (applican0_.social_security_num=? )
Hibernate: select applican0_.id as id, applican0_.social_security_num as social_s2_, applican0_.created_on as created_on, applican0_.created_by as created_by from APPLICANT applican0_ where (applican0_.social_security_num=? )
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - preparing statement
DEBUG net.sf.hibernate.type.StringType - binding '223121231' to parameter: 1
DEBUG net.sf.hibernate.loader.Loader - processing result set
DEBUG net.sf.hibernate.type.StringType - returning '8a8db552f7b0359b00f7b0359fc90001' as column: id
DEBUG net.sf.hibernate.loader.Loader - result row: 8a8db552f7b0359b00f7b0359fc90001
DEBUG net.sf.hibernate.loader.Loader - Initializing object from ResultSet: 8a8db552f7b0359b00f7b0359fc90001
DEBUG net.sf.hibernate.loader.Loader - Hydrating entity: com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001
DEBUG net.sf.hibernate.type.StringType - returning '223121231' as column: social_s2_
DEBUG net.sf.hibernate.type.TimestampType - returning '17 September 2003 10:40:26' as column: created_on
DEBUG net.sf.hibernate.type.StringType - returning null as column: created_by
DEBUG net.sf.hibernate.loader.Loader - done processing result set (1 rows)
DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - closing statement
DEBUG net.sf.hibernate.loader.Loader - total objects hydrated: 1
DEBUG net.sf.hibernate.impl.SessionImpl - resolving associations for [com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001]
DEBUG net.sf.hibernate.impl.SessionImpl - initializing collection [com.dfs.fraud.persist.ApplicantRecord.applications#8a8db552f7b0359b00f7b0359fc90001]
DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - prepared statement get: select applicat0_.id as id__, applicat0_.id as id, applicat0_.applicant_type as applican2_, applicat0_.client_origin as client_o3_, applicat0_.email_address as email_ad4_, applicat0_.first_name as first_name, applicat0_.last_name as last_name, applicat0_.middle_name as middle_n7_, applicat0_.res_street_address1 as res_stre8_, applicat0_.res_street_address2 as res_stre9_, applicat0_.res_city as res_city, applicat0_.res_state as res_state, applicat0_.res_zipcode as res_zip12_, applicat0_.res_zipcode_ext as res_zip13_, applicat0_.months_at_residence as months_14_, applicat0_.ani as ani, applicat0_.ip_address as ip_address, applicat0_.phone1_area_code as phone1_17_, applicat0_.phone1_exchange as phone1_18_, applicat0_.phone1_line_number as phone1_19_, applicat0_.phone2_area_code as phone2_20_, applicat0_.phone2_exchange as phone2_21_, applicat0_.phone2_line_number as phone2_22_, applicat0_.drivers_license_state as drivers23_, applicat0_.drivers_license_num as drivers24_, applicat0_.date_of_birth as date_of25_, applicat0_.dfs_customer_num as dfs_cus26_, applicat0_.doms_company_num as doms_co27_, applicat0_.shipping_street_address1 as shippin28_, applicat0_.shipping_street_address2 as shippin29_, applicat0_.shipping_city as shippin30_, applicat0_.shipping_state as shippin31_, applicat0_.shipping_zipcode as shippin32_, applicat0_.shipping_zipcode_ext as shippin33_, applicat0_.billing_street_address1 as billing34_, applicat0_.billing_street_address2 as billing35_, applicat0_.billing_city as billing36_, applicat0_.billing_state as billing37_, applicat0_.billing_zipcode as billing38_, applicat0_.billing_zipcode_ext as billing39_, applicat0_.created_on as created_on, applicat0_.created_by as created_by, applicat0_.applicant_id as applica42_ from APPLICATION applicat0_ where applicat0_.applicant_id=?
Hibernate: select applicat0_.id as id__, applicat0_.id as id, applicat0_.applicant_type as applican2_, applicat0_.client_origin as client_o3_, applicat0_.email_address as email_ad4_, applicat0_.first_name as first_name, applicat0_.last_name as last_name, applicat0_.middle_name as middle_n7_, applicat0_.res_street_address1 as res_stre8_, applicat0_.res_street_address2 as res_stre9_, applicat0_.res_city as res_city, applicat0_.res_state as res_state, applicat0_.res_zipcode as res_zip12_, applicat0_.res_zipcode_ext as res_zip13_, applicat0_.months_at_residence as months_14_, applicat0_.ani as ani, applicat0_.ip_address as ip_address, applicat0_.phone1_area_code as phone1_17_, applicat0_.phone1_exchange as phone1_18_, applicat0_.phone1_line_number as phone1_19_, applicat0_.phone2_area_code as phone2_20_, applicat0_.phone2_exchange as phone2_21_, applicat0_.phone2_line_number as phone2_22_, applicat0_.drivers_license_state as drivers23_, applicat0_.drivers_license_num as drivers24_, applicat0_.date_of_birth as date_of25_, applicat0_.dfs_customer_num as dfs_cus26_, applicat0_.doms_company_num as doms_co27_, applicat0_.shipping_street_address1 as shippin28_, applicat0_.shipping_street_address2 as shippin29_, applicat0_.shipping_city as shippin30_, applicat0_.shipping_state as shippin31_, applicat0_.shipping_zipcode as shippin32_, applicat0_.shipping_zipcode_ext as shippin33_, applicat0_.billing_street_address1 as billing34_, applicat0_.billing_street_address2 as billing35_, applicat0_.billing_city as billing36_, applicat0_.billing_state as billing37_, applicat0_.billing_zipcode as billing38_, applicat0_.billing_zipcode_ext as billing39_, applicat0_.created_on as created_on, applicat0_.created_by as created_by, applicat0_.applicant_id as applica42_ from APPLICATION applicat0_ where applicat0_.applicant_id=?
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - preparing statement
DEBUG net.sf.hibernate.type.StringType - binding '8a8db552f7b0359b00f7b0359fc90001' to parameter: 1
DEBUG net.sf.hibernate.loader.Loader - processing result set
DEBUG net.sf.hibernate.type.StringType - returning '8a8db552f7b0359b00f7b0359fd80002' as column: id
DEBUG net.sf.hibernate.loader.Loader - result row: 8a8db552f7b0359b00f7b0359fd80002
DEBUG net.sf.hibernate.loader.Loader - Initializing object from ResultSet: 8a8db552f7b0359b00f7b0359fd80002
DEBUG net.sf.hibernate.loader.Loader - Hydrating entity: com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002
DEBUG net.sf.hibernate.type.PersistentEnumType - returning '0' as column: applican2_
DEBUG net.sf.hibernate.type.PersistentEnumType - returning '0' as column: client_o3_
DEBUG net.sf.hibernate.type.StringType - returning 'dfs1@dfs.com' as column: email_ad4_
DEBUG net.sf.hibernate.type.StringType - returning 'First Name' as column: first_name
DEBUG net.sf.hibernate.type.StringType - returning 'Last Name' as column: last_name
DEBUG net.sf.hibernate.type.StringType - returning 'Middle Name' as column: middle_n7_
DEBUG net.sf.hibernate.type.StringType - returning 'Res Street Address1' as column: res_stre8_
DEBUG net.sf.hibernate.type.StringType - returning 'Res Street Address2' as column: res_stre9_
DEBUG net.sf.hibernate.type.StringType - returning null as column: res_city
DEBUG net.sf.hibernate.type.StringType - returning null as column: res_state
DEBUG net.sf.hibernate.type.StringType - returning null as column: res_zip12_
DEBUG net.sf.hibernate.type.StringType - returning null as column: res_zip13_
DEBUG net.sf.hibernate.type.IntegerType - returning null as column: months_14_
DEBUG net.sf.hibernate.type.StringType - returning '5127231121' as column: ani
DEBUG net.sf.hibernate.type.StringType - returning '123.123.123.123' as column: ip_address
DEBUG net.sf.hibernate.type.IntegerType - returning null as column: phone1_17_
DEBUG net.sf.hibernate.type.IntegerType - returning null as column: phone1_18_
DEBUG net.sf.hibernate.type.IntegerType - returning null as column: phone1_19_
DEBUG net.sf.hibernate.type.IntegerType - returning null as column: phone2_20_
DEBUG net.sf.hibernate.type.IntegerType - returning null as column: phone2_21_
DEBUG net.sf.hibernate.type.IntegerType - returning null as column: phone2_22_
DEBUG net.sf.hibernate.type.StringType - returning null as column: drivers23_
DEBUG net.sf.hibernate.type.StringType - returning null as column: drivers24_
DEBUG net.sf.hibernate.type.TimestampType - returning null as column: date_of25_
DEBUG net.sf.hibernate.type.StringType - returning null as column: dfs_cus26_
DEBUG net.sf.hibernate.type.StringType - returning null as column: doms_co27_
DEBUG net.sf.hibernate.type.StringType - returning null as column: shippin28_
DEBUG net.sf.hibernate.type.StringType - returning null as column: shippin29_
DEBUG net.sf.hibernate.type.StringType - returning null as column: shippin30_
DEBUG net.sf.hibernate.type.StringType - returning null as column: shippin31_
DEBUG net.sf.hibernate.type.StringType - returning null as column: shippin32_
DEBUG net.sf.hibernate.type.StringType - returning null as column: shippin33_
DEBUG net.sf.hibernate.type.StringType - returning null as column: billing34_
DEBUG net.sf.hibernate.type.StringType - returning null as column: billing35_
DEBUG net.sf.hibernate.type.StringType - returning null as column: billing36_
DEBUG net.sf.hibernate.type.StringType - returning null as column: billing37_
DEBUG net.sf.hibernate.type.StringType - returning null as column: billing38_
DEBUG net.sf.hibernate.type.StringType - returning null as column: billing39_
DEBUG net.sf.hibernate.type.TimestampType - returning '17 September 2003 10:40:26' as column: created_on
DEBUG net.sf.hibernate.type.StringType - returning 'JUnit TestCase' as column: created_by
DEBUG net.sf.hibernate.type.StringType - returning '8a8db552f7b0359b00f7b0359fc90001' as column: applica42_
DEBUG net.sf.hibernate.type.StringType - returning '8a8db552f7b0359b00f7b0359fd80002' as column: id__
DEBUG net.sf.hibernate.impl.SessionImpl - loading [com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002]
DEBUG net.sf.hibernate.impl.SessionImpl - attempting to resolve [com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002]
DEBUG net.sf.hibernate.impl.SessionImpl - resolved object in session cache [com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002]
DEBUG net.sf.hibernate.loader.Loader - done processing result set (1 rows)
DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - closing statement
DEBUG net.sf.hibernate.loader.Loader - total objects hydrated: 1
DEBUG net.sf.hibernate.impl.SessionImpl - resolving associations for [com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002]
DEBUG net.sf.hibernate.impl.SessionImpl - loading [com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001]
DEBUG net.sf.hibernate.impl.SessionImpl - attempting to resolve [com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001]
DEBUG net.sf.hibernate.impl.SessionImpl - resolved object in session cache [com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001]
DEBUG net.sf.hibernate.impl.SessionImpl - done materializing entity [com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b0359fd80002]
DEBUG net.sf.hibernate.impl.SessionImpl - done materializing entity [com.dfs.fraud.persist.ApplicantRecord#8a8db552f7b0359b00f7b0359fc90001]
DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() persistent instance
DEBUG net.sf.hibernate.impl.SessionImpl - flushing session
DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: com.dfs.fraud.persist.ApplicantRecord
DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: com.dfs.fraud.persist.ApplicantRecord.applications
DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
DEBUG net.sf.hibernate.engine.Cascades - unsaved-value strategy NULL
DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance with id: null
DEBUG net.sf.hibernate.impl.SessionImpl - saving [com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b035a0840003]
DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: com.dfs.fraud.persist.ApplicantRecord
DEBUG net.sf.hibernate.impl.SessionImpl - Flushing entities and processing referenced collections
DEBUG net.sf.hibernate.impl.SessionImpl - Wrapped collection in role: com.dfs.fraud.persist.ApplicantRecord.applications
DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [com.dfs.fraud.persist.ApplicantRecord.applications#8a8db552f7b0359b00f7b0359fc90001], was: [<unreferenced>]
DEBUG net.sf.hibernate.impl.SessionImpl - Processing unreferenced collections
DEBUG net.sf.hibernate.impl.SessionImpl - Collection dereferenced: [com.dfs.fraud.persist.ApplicantRecord.applications#8a8db552f7b0359b00f7b0359fc90001]
DEBUG net.sf.hibernate.impl.SessionImpl - Scheduling collection removes/(re)creates/updates
DEBUG net.sf.hibernate.impl.SessionImpl - Flushed: 1 insertions, 0 updates, 0 deletions to 3 objects
DEBUG net.sf.hibernate.impl.SessionImpl - Flushed: 1 (re)creations, 0 updates, 1 removals to 2 collections
DEBUG net.sf.hibernate.impl.SessionImpl - executing flush
DEBUG net.sf.hibernate.persister.EntityPersister - Inserting entity: com.dfs.fraud.persist.ApplicationRecord#8a8db552f7b0359b00f7b035a0840003
DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
DEBUG net.sf.hibernate.impl.SessionFactoryImpl - prepared statement get: insert into APPLICATION (applicant_type, client_origin, email_address, first_name, last_name, middle_name, res_street_address1, res_street_address2, res_city, res_state, res_zipcode, res_zipcode_ext, months_at_residence, ani, ip_address, phone1_area_code, phone1_exchange, phone1_line_number, phone2_area_code, phone2_exchange, phone2_line_number, drivers_license_state, drivers_license_num, date_of_birth, dfs_customer_num, doms_company_num, shipping_street_address1, shipping_street_address2, shipping_city, shipping_state, shipping_zipcode, shipping_zipcode_ext, billing_street_address1, billing_street_address2, billing_city, billing_state, billing_zipcode, billing_zipcode_ext, created_on, created_by, applicant_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Hibernate: insert into APPLICATION (applicant_type, client_origin, email_address, first_name, last_name, middle_name, res_street_address1, res_street_address2, res_city, res_state, res_zipcode, res_zipcode_ext, months_at_residence, ani, ip_address, phone1_area_code, phone1_exchange, phone1_line_number, phone2_area_code, phone2_exchange, phone2_line_number, drivers_license_state, drivers_license_num, date_of_birth, dfs_customer_num, doms_company_num, shipping_street_address1, shipping_street_address2, shipping_city, shipping_state, shipping_zipcode, shipping_zipcode_ext, billing_street_address1, billing_street_address2, billing_city, billing_state, billing_zipcode, billing_zipcode_ext, created_on, created_by, applicant_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?


Top
 Profile  
 
 Post subject: All children are always returned.
PostPosted: Wed Sep 17, 2003 12:02 pm 
Senior
Senior

Joined: Sun Aug 31, 2003 3:14 pm
Posts: 151
Location: Earth (at the moment)
The children of the class you are querying comprise its identity and you will always get all of the children because Hibernate's approach is to treat the objects (data) as entities and not values.
Do a search on your question in this forum and you will find other people (including myself) have asked the same question and read the responses.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.