-->
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: Exception "Collection was modified" in log Printer
PostPosted: Wed Oct 03, 2007 4:44 am 
Newbie

Joined: Thu Sep 06, 2007 5:06 am
Posts: 6
Hi,

An exception is thrown when logging is turned on for NHib.

It's thrown only when an ASP.NET page contains a GridView bound to ObjectDataSource.
The GridView causes a load of some domain objects, and then the NHib log Printer tries to iterate through them.

The call to Printer at NHibernate.Impl.SessionImpl.FlushEverything() looks like this:
Code:
new Printer(factory).ToString(entitiesByKey.Values.GetEnumerator());


Seems like the entitiesByKey collection is being modified while the log Printer is iterating through it.

I am running in ASP.NET dev server - single user, single request at a time.

What could be a possible cause?

Hibernate version: 1.2.0GA

Exception details from ASP.NET:

Code:
Collection was modified; enumeration operation may not execute.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: Collection was modified; enumeration operation may not execute.

Source Error:

Line 91:             }
Line 92:             log.Debug(ToString(enumerator.Current));
Line 93:          } while (enumerator.MoveNext());
Line 94:       }
Line 95:


Source File: C:\Program Files\NHibernate\src\NHibernate-src\src\NHibernate\Impl\Printer.cs    Line: 93

Stack Trace:

[InvalidOperationException: Collection was modified; enumeration operation may not execute.]
   System.Collections.HashtableEnumerator.MoveNext() +2779506
   NHibernate.Impl.Printer.ToString(IEnumerator enumerator) in C:\Program Files\NHibernate\src\NHibernate-src\src\NHibernate\Impl\Printer.cs:93
   NHibernate.Impl.SessionImpl.FlushEverything() in C:\Program Files\NHibernate\src\NHibernate-src\src\NHibernate\Impl\SessionImpl.cs:3103
   NHibernate.Impl.SessionImpl.AutoFlushIfRequired(ISet querySpaces) in C:\Program Files\NHibernate\src\NHibernate-src\src\NHibernate\Impl\SessionImpl.cs:2234
   NHibernate.Impl.SessionImpl.Find(CriteriaImpl criteria, IList results) in C:\Program Files\NHibernate\src\NHibernate-src\src\NHibernate\Impl\SessionImpl.cs:4950
   NHibernate.Impl.SessionImpl.Find(CriteriaImpl criteria) in C:\Program Files\NHibernate\src\NHibernate-src\src\NHibernate\Impl\SessionImpl.cs:4906
   NHibernate.Impl.CriteriaImpl.List() in C:\Program Files\NHibernate\src\NHibernate-src\src\NHibernate\Impl\CriteriaImpl.cs:304
   NHibernate.Impl.CriteriaImpl.UniqueResult() in C:\Program Files\NHibernate\src\NHibernate-src\src\NHibernate\Impl\CriteriaImpl.cs:429
   Itst.Data.AbstractNHibernateDao`2.GetUniqueByCriteria(ICriterion[] criterion) in C:\code\src\Itst.Data\AbstractNHibernateDao.cs:154
   Itst.Data.UserDao.GetByEmail(String email) in C:\code\src\Itst.Data\UserDao.cs:26
   BLMembershipProvider.GetUser(String username, Boolean userIsOnline) in C:\code\src\web_ui\App_Code\BLMembershipProvider.cs:160
   System.Web.Security.Membership.GetUser(String username, Boolean userIsOnline) +81
   System.Web.Security.Membership.GetUser() +16
   ASP.vendor_masterpage_master.__Renderform2(HtmlTextWriter __w, Control parameterContainer) in C:\code\src\web_ui\Vendor\MasterPage.master:21
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +98
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +20
   System.Web.UI.HtmlControls.HtmlForm.RenderChildren(HtmlTextWriter writer) +59
   System.Web.UI.HtmlControls.HtmlForm.Render(HtmlTextWriter output) +68
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +25
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +121
   System.Web.UI.HtmlControls.HtmlForm.RenderControl(HtmlTextWriter writer) +37
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +199
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +20
   System.Web.UI.Control.Render(HtmlTextWriter writer) +7
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +25
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +121
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +22
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +199
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +20
   System.Web.UI.Page.Render(HtmlTextWriter writer) +26
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +25
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +121
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +22
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2644



Top
 Profile  
 
 Post subject:
PostPosted: Mon Feb 04, 2008 10:21 am 
Newbie

Joined: Mon Feb 04, 2008 9:49 am
Posts: 1
Same error when commiting a transaction.
The error appears after a migration from NHibernate 1.0 where the original code works ok. I couln´t get errors in the mappings or transaction handling. Furthermore, the code and queries are very simple.
I spend some time debuging the nhibernate source but i couldn´t get the error; since I have no time now I placed a simple debugging message:

Code:
            do
         {
                if (i++ > 20)
                {
                    log.Debug("more......");
                    break;
                }
                log.Debug(enumerator.Current.GetType());
                //Erroneus code?:
            //log.Debug(ToString(enumerator.Current));
         } while (enumerator.MoveNext());



which shows that the loop can be performed.
That works fine.




Hibernate version: 1.2.1

Here is the relevant exception trace:

Quote:
System.InvalidOperationException: Collection was modified; enumeration operation may not execute.
at System.Collections.Hashtable.HashtableEnumerator.MoveNext()
at NHibernate.Impl.Printer.ToString(IEnumerator enumerator) in D:\Projects\Research\Nhibernate1.2.1\src\NHibernate\Impl\Printer.cs:line 93
at NHibernate.Impl.SessionImpl.FlushEverything() in D:\Projects\Research\Nhibernate1.2.1\src\NHibernate\Impl\SessionImpl.cs:line 3103
at NHibernate.Impl.SessionImpl.Flush() in D:\Projects\Research\Nhibernate1.2.1\src\NHibernate\Impl\SessionImpl.cs:line 3056
at NHibernate.Transaction.AdoTransaction.Commit() in D:\Projects\Research\Nhibernate1.2.1\src\NHibernate\Transaction\AdoTransaction.cs:line 162



log4net messages (i cut out some text regarding with my application structure)

Quote:

11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - opened session
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Transaction.AdoTransaction (null) - begin
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Connection.DriverConnectionProvider (null) - Obtaining IDbConnection from Driver
...
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - loading [purchase#1]
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - attempting to resolve [purchase#1]
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - object not resolved in any cache [purchase#1]
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Persister.Entity.AbstractEntityPersister (null) - Fetching entity: [purchase#1]
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - loading entity: [purchase#1]
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened new IDbCommand, open IDbCommands: 1
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Building an IDbCommand object for the SqlString: SELECT purchaseor0_.id as id0_0_, purchaseor0_.startDate as startDate0_0_, purchaseor0_.confirmDate as confirmD3_0_0_, purchaseor0_.idCompany as idCompany0_0_, purchaseor0_.taxRate as taxRate0_0_, purchaseor0_.taxShipping as taxShipp6_0_0_, purchaseor0_.firstName as firstName0_0_, purchaseor0_.lastName as lastName0_0_, purchaseor0_.smsCellPhone as smsCellP9_0_0_, purchaseor0_.phone as phone0_0_, purchaseor0_.email as email0_0_, purchaseor0_.address1 as address12_0_0_, purchaseor0_.address2 as address13_0_0_, purchaseor0_.city as city0_0_, purchaseor0_.zip as zip0_0_, purchaseor0_.state as state0_0_, purchaseor0_.idCountry as idCountry0_0_, purchaseor0_.shippingAddress1 as shippin18_0_0_, purchaseor0_.shippingAddress2 as shippin19_0_0_, purchaseor0_.shippingCity as shippin20_0_0_, purchaseor0_.shippingZip as shippin21_0_0_, purchaseor0_.shippingState as shippin22_0_0_, purchaseor0_.shippingIdCountry as shippin23_0_0_, purchaseor0_.creditCard as creditCard0_0_, purchaseor0_.creditCardNumber as creditC25_0_0_, purchaseor0_.creditCardExpirationDate as creditC26_0_0_, purchaseor0_.creditCardCvv as creditC27_0_0_, purchaseor0_.idpurchaseTracking as idPurch28_0_0_ FROM purchas purchaseor0_ WHERE purchaseor0_.id=?
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - binding '1' to parameter: 0
11045 [AdpaterExeMgrThread1] INFO NHibernate.Loader.Loader (null) - SELECT purchaseor0_.id as id0_0_, purchaseor0_.startDate as startDate0_0_, purchaseor0_.confirmDate as confirmD3_0_0_, purchaseor0_.idCompany as idCompany0_0_, purchaseor0_.taxRate as taxRate0_0_, purchaseor0_.taxShipping as taxShipp6_0_0_, purchaseor0_.firstName as firstName0_0_, purchaseor0_.lastName as lastName0_0_, purchaseor0_.smsCellPhone as smsCellP9_0_0_, purchaseor0_.phone as phone0_0_, purchaseor0_.email as email0_0_, purchaseor0_.address1 as address12_0_0_, purchaseor0_.address2 as address13_0_0_, purchaseor0_.city as city0_0_, purchaseor0_.zip as zip0_0_, purchaseor0_.state as state0_0_, purchaseor0_.idCountry as idCountry0_0_, purchaseor0_.shippingAddress1 as shippin18_0_0_, purchaseor0_.shippingAddress2 as shippin19_0_0_, purchaseor0_.shippingCity as shippin20_0_0_, purchaseor0_.shippingZip as shippin21_0_0_, purchaseor0_.shippingState as shippin22_0_0_, purchaseor0_.shippingIdCountry as shippin23_0_0_, purchaseor0_.creditCard as creditCard0_0_, purchaseor0_.creditCardNumber as creditC25_0_0_, purchaseor0_.creditCardExpirationDate as creditC26_0_0_, purchaseor0_.creditCardCvv as creditC27_0_0_, purchaseor0_.idpurchaseTracking as idPurch28_0_0_ FROM purchas purchaseor0_ WHERE purchaseor0_.id=@p0
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.SQL (null) - SELECT purchaseor0_.id as id0_0_, purchaseor0_.startDate as startDate0_0_, purchaseor0_.confirmDate as confirmD3_0_0_, purchaseor0_.idCompany as idCompany0_0_, purchaseor0_.taxRate as taxRate0_0_, purchaseor0_.taxShipping as taxShipp6_0_0_, purchaseor0_.firstName as firstName0_0_, purchaseor0_.lastName as lastName0_0_, purchaseor0_.smsCellPhone as smsCellP9_0_0_, purchaseor0_.phone as phone0_0_, purchaseor0_.email as email0_0_, purchaseor0_.address1 as address12_0_0_, purchaseor0_.address2 as address13_0_0_, purchaseor0_.city as city0_0_, purchaseor0_.zip as zip0_0_, purchaseor0_.state as state0_0_, purchaseor0_.idCountry as idCountry0_0_, purchaseor0_.shippingAddress1 as shippin18_0_0_, purchaseor0_.shippingAddress2 as shippin19_0_0_, purchaseor0_.shippingCity as shippin20_0_0_, purchaseor0_.shippingZip as shippin21_0_0_, purchaseor0_.shippingState as shippin22_0_0_, purchaseor0_.shippingIdCountry as shippin23_0_0_, purchaseor0_.creditCard as creditCard0_0_, purchaseor0_.creditCardNumber as creditC25_0_0_, purchaseor0_.creditCardExpirationDate as creditC26_0_0_, purchaseor0_.creditCardCvv as creditC27_0_0_, purchaseor0_.idpurchaseTracking as idPurch28_0_0_ FROM purchas purchaseor0_ WHERE purchaseor0_.id=@p0; @p0 = '1'
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened IDataReader, open IDataReaders: 1
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - processing result set
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result set row: 0
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result row: 1
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - Initializing object from DataReader: [purchase#1]
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - Hydrating entity: purchase#1
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.DateTimeType (null) - returning '04/02/2008' as column: startDate0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.DateTimeType (null) - returning null as column: confirmD3_0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '6' as column: idCompany0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.DecimalType (null) - returning null as column: taxRate0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.BooleanType (null) - returning null as column: taxShipp6_0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: firstName0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: lastName0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning '+1(219)0000000' as column: smsCellP9_0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning '+1(219)0000000' as column: phone0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: email0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: address12_0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: address13_0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: city0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: zip0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: state0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning null as column: idCountry0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: shippin18_0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: shippin19_0_0_
11045 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: shippin20_0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: shippin21_0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: shippin22_0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning null as column: shippin23_0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.BinaryType (null) - returning null as column: creditCard0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.BinaryType (null) - returning null as column: creditC25_0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.BinaryType (null) - returning null as column: creditC26_0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.BinaryType (null) - returning null as column: creditC27_0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '1' as column: idPurch28_0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done processing result set (1 rows)
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Driver.NHybridDataReader (null) - running NHybridDataReader.Dispose()
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDataReader, open IDataReaders :0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDbCommand, open IDbCommands: 0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - total objects hydrated: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - resolving associations for: [purchase#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - loading [Company#6]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - creating collection wrapper:[purchase.XXXOrderLines#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - creating collection wrapper:[purchase.YYYOrderLines#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - loading [purchaseTrack#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - done materializing entity [purchase#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - initializing non-lazy collections
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done entity load
...
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - attempting to resolve [purchaseTrack#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - object not resolved in any cache [Tracking.purchaseTrack#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Persister.Entity.AbstractEntityPersister (null) - Fetching entity: [Tracking.purchaseTrack#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - loading entity: [Tracking.purchaseTrack#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened new IDbCommand, open IDbCommands: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Building an IDbCommand object for the SqlString: SELECT purchaseor0_.id as id14_1_, purchaseor0_.trackingStateTimeStamp as tracking2_14_1_, purchaseor0_.trackingStateType as tracking3_14_1_, purchaseor0_.idLastRequestMessage as idLastRe4_14_1_, purchaseor0_.city as city14_1_, purchaseor0_.zipCode as zipCode14_1_, purchaseor0_.address as address14_1_, purchaseor0_.stateAbbr as stateAbbr14_1_, purchaseor0_.cellPhoneNumber as cellPhon9_14_1_, purchaseor0_.homePhoneNumber as homePho10_14_1_, purchaseor0_.customerCellPhoneNumber as custome11_14_1_, purchaseor0_.recipientCellPhoneNumber as recipie12_14_1_, purchaseor1_.id as id0_0_, purchaseor1_.startDate as startDate0_0_, purchaseor1_.confirmDate as confirmD3_0_0_, purchaseor1_.idCompany as idCompany0_0_, purchaseor1_.taxRate as taxRate0_0_, purchaseor1_.taxShipping as taxShipp6_0_0_, purchaseor1_.firstName as firstName0_0_, purchaseor1_.lastName as lastName0_0_, purchaseor1_.smsCellPhone as smsCellP9_0_0_, purchaseor1_.phone as phone0_0_, purchaseor1_.email as email0_0_, purchaseor1_.address1 as address12_0_0_, purchaseor1_.address2 as address13_0_0_, purchaseor1_.city as city0_0_, purchaseor1_.zip as zip0_0_, purchaseor1_.state as state0_0_, purchaseor1_.idCountry as idCountry0_0_, purchaseor1_.shippingAddress1 as shippin18_0_0_, purchaseor1_.shippingAddress2 as shippin19_0_0_, purchaseor1_.shippingCity as shippin20_0_0_, purchaseor1_.shippingZip as shippin21_0_0_, purchaseor1_.shippingState as shippin22_0_0_, purchaseor1_.shippingIdCountry as shippin23_0_0_, purchaseor1_.creditCard as creditCard0_0_, purchaseor1_.creditCardNumber as creditC25_0_0_, purchaseor1_.creditCardExpirationDate as creditC26_0_0_, purchaseor1_.creditCardCvv as creditC27_0_0_, purchaseor1_.idpurchaseTracking as idPurch28_0_0_ FROM purchas_track purchaseor0_ left outer join purchas purchaseor1_ on purchaseor0_.id=purchaseor1_.idpurchaseTracking WHERE purchaseor0_.id=?
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - binding '1' to parameter: 0
11061 [AdpaterExeMgrThread1] INFO NHibernate.Loader.Loader (null) - SELECT purchaseor0_.id as id14_1_, purchaseor0_.trackingStateTimeStamp as tracking2_14_1_, purchaseor0_.trackingStateType as tracking3_14_1_, purchaseor0_.idLastRequestMessage as idLastRe4_14_1_, purchaseor0_.city as city14_1_, purchaseor0_.zipCode as zipCode14_1_, purchaseor0_.address as address14_1_, purchaseor0_.stateAbbr as stateAbbr14_1_, purchaseor0_.cellPhoneNumber as cellPhon9_14_1_, purchaseor0_.homePhoneNumber as homePho10_14_1_, purchaseor0_.customerCellPhoneNumber as custome11_14_1_, purchaseor0_.recipientCellPhoneNumber as recipie12_14_1_, purchaseor1_.id as id0_0_, purchaseor1_.startDate as startDate0_0_, purchaseor1_.confirmDate as confirmD3_0_0_, purchaseor1_.idCompany as idCompany0_0_, purchaseor1_.taxRate as taxRate0_0_, purchaseor1_.taxShipping as taxShipp6_0_0_, purchaseor1_.firstName as firstName0_0_, purchaseor1_.lastName as lastName0_0_, purchaseor1_.smsCellPhone as smsCellP9_0_0_, purchaseor1_.phone as phone0_0_, purchaseor1_.email as email0_0_, purchaseor1_.address1 as address12_0_0_, purchaseor1_.address2 as address13_0_0_, purchaseor1_.city as city0_0_, purchaseor1_.zip as zip0_0_, purchaseor1_.state as state0_0_, purchaseor1_.idCountry as idCountry0_0_, purchaseor1_.shippingAddress1 as shippin18_0_0_, purchaseor1_.shippingAddress2 as shippin19_0_0_, purchaseor1_.shippingCity as shippin20_0_0_, purchaseor1_.shippingZip as shippin21_0_0_, purchaseor1_.shippingState as shippin22_0_0_, purchaseor1_.shippingIdCountry as shippin23_0_0_, purchaseor1_.creditCard as creditCard0_0_, purchaseor1_.creditCardNumber as creditC25_0_0_, purchaseor1_.creditCardExpirationDate as creditC26_0_0_, purchaseor1_.creditCardCvv as creditC27_0_0_, purchaseor1_.idpurchaseTracking as idPurch28_0_0_ FROM purchas_track purchaseor0_ left outer join purchas purchaseor1_ on purchaseor0_.id=purchaseor1_.idpurchaseTracking WHERE purchaseor0_.id=@p0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.SQL (null) - SELECT purchaseor0_.id as id14_1_, purchaseor0_.trackingStateTimeStamp as tracking2_14_1_, purchaseor0_.trackingStateType as tracking3_14_1_, purchaseor0_.idLastRequestMessage as idLastRe4_14_1_, purchaseor0_.city as city14_1_, purchaseor0_.zipCode as zipCode14_1_, purchaseor0_.address as address14_1_, purchaseor0_.stateAbbr as stateAbbr14_1_, purchaseor0_.cellPhoneNumber as cellPhon9_14_1_, purchaseor0_.homePhoneNumber as homePho10_14_1_, purchaseor0_.customerCellPhoneNumber as custome11_14_1_, purchaseor0_.recipientCellPhoneNumber as recipie12_14_1_, purchaseor1_.id as id0_0_, purchaseor1_.startDate as startDate0_0_, purchaseor1_.confirmDate as confirmD3_0_0_, purchaseor1_.idCompany as idCompany0_0_, purchaseor1_.taxRate as taxRate0_0_, purchaseor1_.taxShipping as taxShipp6_0_0_, purchaseor1_.firstName as firstName0_0_, purchaseor1_.lastName as lastName0_0_, purchaseor1_.smsCellPhone as smsCellP9_0_0_, purchaseor1_.phone as phone0_0_, purchaseor1_.email as email0_0_, purchaseor1_.address1 as address12_0_0_, purchaseor1_.address2 as address13_0_0_, purchaseor1_.city as city0_0_, purchaseor1_.zip as zip0_0_, purchaseor1_.state as state0_0_, purchaseor1_.idCountry as idCountry0_0_, purchaseor1_.shippingAddress1 as shippin18_0_0_, purchaseor1_.shippingAddress2 as shippin19_0_0_, purchaseor1_.shippingCity as shippin20_0_0_, purchaseor1_.shippingZip as shippin21_0_0_, purchaseor1_.shippingState as shippin22_0_0_, purchaseor1_.shippingIdCountry as shippin23_0_0_, purchaseor1_.creditCard as creditCard0_0_, purchaseor1_.creditCardNumber as creditC25_0_0_, purchaseor1_.creditCardExpirationDate as creditC26_0_0_, purchaseor1_.creditCardCvv as creditC27_0_0_, purchaseor1_.idpurchaseTracking as idPurch28_0_0_ FROM purchas_track purchaseor0_ left outer join purchas purchaseor1_ on purchaseor0_.id=purchaseor1_.idpurchaseTracking WHERE purchaseor0_.id=@p0; @p0 = '1'
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened IDataReader, open IDataReaders: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - processing result set
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result set row: 0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '1' as column: id0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result row: 1, 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - Initializing object from DataReader: [Tracking.purchaseTrack#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - Hydrating entity: Tracking.purchaseTrack#1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.DateTimeType (null) - returning '04/02/2008' as column: tracking2_14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int32Type (null) - returning '20020' as column: tracking3_14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '2' as column: idLastRe4_14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: city14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: zipCode14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: address14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: stateAbbr14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning '+1(219)0000000' as column: cellPhon9_14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: homePho10_14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: custome11_14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: recipie12_14_1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done processing result set (1 rows)
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Driver.NHybridDataReader (null) - running NHybridDataReader.Dispose()
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDataReader, open IDataReaders :0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDbCommand, open IDbCommands: 0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - total objects hydrated: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - resolving associations for: [Tracking.purchaseTrack#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - loading entity: [purchase#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened new IDbCommand, open IDbCommands: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Building an IDbCommand object for the SqlString: SELECT purchaseor0_.id as id0_0_, purchaseor0_.startDate as startDate0_0_, purchaseor0_.confirmDate as confirmD3_0_0_, purchaseor0_.idCompany as idCompany0_0_, purchaseor0_.taxRate as taxRate0_0_, purchaseor0_.taxShipping as taxShipp6_0_0_, purchaseor0_.firstName as firstName0_0_, purchaseor0_.lastName as lastName0_0_, purchaseor0_.smsCellPhone as smsCellP9_0_0_, purchaseor0_.phone as phone0_0_, purchaseor0_.email as email0_0_, purchaseor0_.address1 as address12_0_0_, purchaseor0_.address2 as address13_0_0_, purchaseor0_.city as city0_0_, purchaseor0_.zip as zip0_0_, purchaseor0_.state as state0_0_, purchaseor0_.idCountry as idCountry0_0_, purchaseor0_.shippingAddress1 as shippin18_0_0_, purchaseor0_.shippingAddress2 as shippin19_0_0_, purchaseor0_.shippingCity as shippin20_0_0_, purchaseor0_.shippingZip as shippin21_0_0_, purchaseor0_.shippingState as shippin22_0_0_, purchaseor0_.shippingIdCountry as shippin23_0_0_, purchaseor0_.creditCard as creditCard0_0_, purchaseor0_.creditCardNumber as creditC25_0_0_, purchaseor0_.creditCardExpirationDate as creditC26_0_0_, purchaseor0_.creditCardCvv as creditC27_0_0_, purchaseor0_.idpurchaseTracking as idPurch28_0_0_ FROM purchas purchaseor0_ WHERE purchaseor0_.idpurchaseTracking=?
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - binding '1' to parameter: 0
11061 [AdpaterExeMgrThread1] INFO NHibernate.Loader.Loader (null) - SELECT purchaseor0_.id as id0_0_, purchaseor0_.startDate as startDate0_0_, purchaseor0_.confirmDate as confirmD3_0_0_, purchaseor0_.idCompany as idCompany0_0_, purchaseor0_.taxRate as taxRate0_0_, purchaseor0_.taxShipping as taxShipp6_0_0_, purchaseor0_.firstName as firstName0_0_, purchaseor0_.lastName as lastName0_0_, purchaseor0_.smsCellPhone as smsCellP9_0_0_, purchaseor0_.phone as phone0_0_, purchaseor0_.email as email0_0_, purchaseor0_.address1 as address12_0_0_, purchaseor0_.address2 as address13_0_0_, purchaseor0_.city as city0_0_, purchaseor0_.zip as zip0_0_, purchaseor0_.state as state0_0_, purchaseor0_.idCountry as idCountry0_0_, purchaseor0_.shippingAddress1 as shippin18_0_0_, purchaseor0_.shippingAddress2 as shippin19_0_0_, purchaseor0_.shippingCity as shippin20_0_0_, purchaseor0_.shippingZip as shippin21_0_0_, purchaseor0_.shippingState as shippin22_0_0_, purchaseor0_.shippingIdCountry as shippin23_0_0_, purchaseor0_.creditCard as creditCard0_0_, purchaseor0_.creditCardNumber as creditC25_0_0_, purchaseor0_.creditCardExpirationDate as creditC26_0_0_, purchaseor0_.creditCardCvv as creditC27_0_0_, purchaseor0_.idpurchaseTracking as idPurch28_0_0_ FROM purchas purchaseor0_ WHERE purchaseor0_.idpurchaseTracking=@p0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.SQL (null) - SELECT purchaseor0_.id as id0_0_, purchaseor0_.startDate as startDate0_0_, purchaseor0_.confirmDate as confirmD3_0_0_, purchaseor0_.idCompany as idCompany0_0_, purchaseor0_.taxRate as taxRate0_0_, purchaseor0_.taxShipping as taxShipp6_0_0_, purchaseor0_.firstName as firstName0_0_, purchaseor0_.lastName as lastName0_0_, purchaseor0_.smsCellPhone as smsCellP9_0_0_, purchaseor0_.phone as phone0_0_, purchaseor0_.email as email0_0_, purchaseor0_.address1 as address12_0_0_, purchaseor0_.address2 as address13_0_0_, purchaseor0_.city as city0_0_, purchaseor0_.zip as zip0_0_, purchaseor0_.state as state0_0_, purchaseor0_.idCountry as idCountry0_0_, purchaseor0_.shippingAddress1 as shippin18_0_0_, purchaseor0_.shippingAddress2 as shippin19_0_0_, purchaseor0_.shippingCity as shippin20_0_0_, purchaseor0_.shippingZip as shippin21_0_0_, purchaseor0_.shippingState as shippin22_0_0_, purchaseor0_.shippingIdCountry as shippin23_0_0_, purchaseor0_.creditCard as creditCard0_0_, purchaseor0_.creditCardNumber as creditC25_0_0_, purchaseor0_.creditCardExpirationDate as creditC26_0_0_, purchaseor0_.creditCardCvv as creditC27_0_0_, purchaseor0_.idpurchaseTracking as idPurch28_0_0_ FROM purchas purchaseor0_ WHERE purchaseor0_.idpurchaseTracking=@p0; @p0 = '1'
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened IDataReader, open IDataReaders: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - processing result set
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result set row: 0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '1' as column: id0_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result row: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done processing result set (1 rows)
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Driver.NHybridDataReader (null) - running NHybridDataReader.Dispose()
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDataReader, open IDataReaders :0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDbCommand, open IDbCommands: 0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - total objects hydrated: 0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done entity load
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - loading [IncomingMessage#2]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - done materializing entity [Tracking.purchaseTrack#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - initializing non-lazy collections
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done entity load
...
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - initializing collection [purchase.XXXOrderLines#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - checking second-level cache
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - collection not cached
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - loading collection: [purchase.XXXOrderLines#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened new IDbCommand, open IDbCommands: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Building an IDbCommand object for the SqlString: SELECT uporde0_.idpurchase as idPurcha7___1_, uporde0_.id as id1_, uporde0_.posn as posn__1_, uporde0_.id as id21_0_, uporde0_.qtty as qtty21_0_, uporde0_.productUnitaryAmount as productU4_21_0_, uporde0_.ShippingAmount as Shipping5_21_0_, uporde0_.idProduct as idProduct21_0_, uporde0_.idpurchase as idPurcha7_21_0_ FROM purchas_line uporde0_ WHERE uporde0_.orderLineType = 'PRODUCT' and uporde0_.idpurchase=?
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - binding '1' to parameter: 0
11061 [AdpaterExeMgrThread1] INFO NHibernate.Loader.Loader (null) - SELECT uporde0_.idpurchase as idPurcha7___1_, uporde0_.id as id1_, uporde0_.posn as posn__1_, uporde0_.id as id21_0_, uporde0_.qtty as qtty21_0_, uporde0_.productUnitaryAmount as productU4_21_0_, uporde0_.ShippingAmount as Shipping5_21_0_, uporde0_.idProduct as idProduct21_0_, uporde0_.idpurchase as idPurcha7_21_0_ FROM purchas_line uporde0_ WHERE uporde0_.orderLineType = 'PRODUCT' and uporde0_.idpurchase=@p0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.SQL (null) - SELECT uporde0_.idpurchase as idPurcha7___1_, uporde0_.id as id1_, uporde0_.posn as posn__1_, uporde0_.id as id21_0_, uporde0_.qtty as qtty21_0_, uporde0_.productUnitaryAmount as productU4_21_0_, uporde0_.ShippingAmount as Shipping5_21_0_, uporde0_.idProduct as idProduct21_0_, uporde0_.idpurchase as idPurcha7_21_0_ FROM purchas_line uporde0_ WHERE uporde0_.orderLineType = 'PRODUCT' and uporde0_.idpurchase=@p0; @p0 = '1'
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened IDataReader, open IDataReaders: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result set contains (possibly empty) collection: [purchase.upOrderLines#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - uninitialized collection: initializing
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - processing result set
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result set row: 0
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '1' as column: id21_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result row: 1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - Initializing object from DataReader: [PurchaseupOrderLine#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - Hydrating entity: PurchaseupOrderLine#1
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int32Type (null) - returning '1' as column: qtty21_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.DecimalType (null) - returning '0,80709' as column: productU4_21_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.DecimalType (null) - returning '0,00000' as column: Shipping5_21_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '6' as column: idProduct21_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '1' as column: idPurcha7_21_0_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '1' as column: idPurcha7___1_
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - found row of collection: [purchase.upOrderLines#1]
11061 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - reading row
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '1' as column: id1_
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - loading [PurchaseupOrderLine#1]
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - attempting to resolve [PurchaseupOrderLine#1]
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - resolved object in session cache [PurchaseupOrderLine#1]
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int32Type (null) - returning '0' as column: posn__1_
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done processing result set (1 rows)
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Driver.NHybridDataReader (null) - running NHybridDataReader.Dispose()
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDataReader, open IDataReaders :0
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDbCommand, open IDbCommands: 0
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - total objects hydrated: 1
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - resolving associations for: [PurchaseupOrderLine#1]
11076 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - loading [Product#6]
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - loading [purchase#1]
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - attempting to resolve [purchase#1]
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - resolved object in session cache [purchase#1]
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - done materializing entity [PurchaseupOrderLine#1]
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - 1 collections were found in result set
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - collection fully initialized: [purchase.upOrderLines#1]
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - 1 collections initialized
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - initializing non-lazy collections
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done loading collection
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - collection initialized
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Transaction.AdoTransaction (null) - commit
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - flushing session
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Engine.Cascades (null) - processing cascades for: purchase
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Engine.Cascades (null) - cascading to collection: purchase.upOrderLines
11108 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - deleting a persistent instance
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - deleting [PurchaseupOrderLine#1]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Engine.Cascades (null) - cascading to collection: purchase.ProductOrderLines
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Engine.Cascades (null) - done processing cascades for: purchase
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.CollectionEntry (null) - Collection dirty: [purchase.upOrderLines#1]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - Flushing entities and processing referenced collections
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.AbstractVisitor (null) - Processing collection for role purchase.upOrderLines
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - Collection found: [purchase.upOrderLines#1], was: [purchase.upOrderLines#1]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.AbstractVisitor (null) - Processing collection for role purchase.ProductOrderLines
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - Collection found: [purchase.ProductOrderLines#1], was: [purchase.ProductOrderLines#1]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Persister.Entity.AbstractEntityPersister (null) - Tracking.purchaseTrack.TrackingStateDescriptor is dirty
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Persister.Entity.AbstractEntityPersister (null) - Tracking.purchaseTrack.BufferAddress is dirty
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Persister.Entity.AbstractEntityPersister (null) - Tracking.purchaseTrack.purchaseTrackRelatedPhones is dirty
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - Updating entity: [Tracking.purchaseTrack#1]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - Processing unreferenced collections
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - scheduling collection removes/(re)creates/updates
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - Flushed: 0 insertions, 1 updates, 1 deletions to 3 objects
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - Flushed: 0 (re)creations, 1 updates, 0 removals to 2 collections
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.Printer (null) - listing entities:
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.Printer (null) - purchase{ProductOrderLines=uninitialized, ConfirmDate=null, Tracking=purchaseTrack#1, upOrderLines=[], CustomerInfo=CustomerInfo{ShippingAddressInfo=AddressInfo{Address2=null, Zip=null, City=null, Country=null, State=null, Address1=null}, Email=null, LastName=null, SmsCellPhone=+1(219)0000000, FirstName=null, Phone=+1(219)0000000, AddressInfo=AddressInfo{Address2=null, Zip=null, City=null, Country=null, State=null, Address1=null}, CreditCardInfo=CreditCardInfo{NumberEncrypted=null, ExpirationDateEncrypted=null, CompanyEncrypted=null, CvvEncrypted=null}}, Id=1, StartDate=04/02/2008, Company=Company#6, TaxRate=null}
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - attempting to resolve [Product#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - object not resolved in any cache [Product#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Persister.Entity.AbstractEntityPersister (null) - Fetching entity: [Product#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - loading entity: [.Product#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened new IDbCommand, open IDbCommands: 1
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Building an IDbCommand object for the SqlString: SELECT product0_.id as id18_0_, product0_.name as name18_0_, product0_.description as descript3_18_0_, product0_.productCode as productC4_18_0_, product0_.internalCode as internal5_18_0_, product0_.unitaryAmount as unitaryA6_18_0_, product0_.keyword as keyword18_0_, product0_.logoImageFileName as logoImag8_18_0_, product0_.imageFileName as imageFil9_18_0_, product0_.shortName as shortName18_0_, product0_.shippingAmount as shippin11_18_0_, product0_.shippingPerQtty as shippin12_18_0_, product0_.productOnly as product13_18_0_, product0_.upOnly as upOnly18_0_, product0_.idCompany as idCompany18_0_ FROM product product0_ WHERE product0_.id=?
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - binding '6' to parameter: 0
11123 [AdpaterExeMgrThread1] INFO NHibernate.Loader.Loader (null) - SELECT product0_.id as id18_0_, product0_.name as name18_0_, product0_.description as descript3_18_0_, product0_.productCode as productC4_18_0_, product0_.internalCode as internal5_18_0_, product0_.unitaryAmount as unitaryA6_18_0_, product0_.keyword as keyword18_0_, product0_.logoImageFileName as logoImag8_18_0_, product0_.imageFileName as imageFil9_18_0_, product0_.shortName as shortName18_0_, product0_.shippingAmount as shippin11_18_0_, product0_.shippingPerQtty as shippin12_18_0_, product0_.productOnly as product13_18_0_, product0_.upOnly as upOnly18_0_, product0_.idCompany as idCompany18_0_ FROM product product0_ WHERE product0_.id=@p0
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.SQL (null) - SELECT product0_.id as id18_0_, product0_.name as name18_0_, product0_.description as descript3_18_0_, product0_.productCode as productC4_18_0_, product0_.internalCode as internal5_18_0_, product0_.unitaryAmount as unitaryA6_18_0_, product0_.keyword as keyword18_0_, product0_.logoImageFileName as logoImag8_18_0_, product0_.imageFileName as imageFil9_18_0_, product0_.shortName as shortName18_0_, product0_.shippingAmount as shippin11_18_0_, product0_.shippingPerQtty as shippin12_18_0_, product0_.productOnly as product13_18_0_, product0_.upOnly as upOnly18_0_, product0_.idCompany as idCompany18_0_ FROM product product0_ WHERE product0_.id=@p0; @p0 = '6'
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Opened IDataReader, open IDataReaders: 1
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - processing result set
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result set row: 0
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - result row: 6
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - Initializing object from DataReader: [.Product#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - Hydrating entity: .Product#6
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning 'name_5be255c2-6563-46bd-aac9-ef477cb666f4' as column: name18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning 'desc_625b526d-17a9-401f-a86a-e651352c9649' as column: descript3_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning 'prodCode_e8c9879f-3251-4097-8edc-7048bb1ffaca' as column: productC4_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: internal5_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.DecimalType (null) - returning '0,80709' as column: unitaryA6_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning 'key_8e4adbfc-9063-478f-a52b-420180743134' as column: keyword18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: logoImag8_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning null as column: imageFil9_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.StringType (null) - returning 'shortName_81ab581f-1a9d-476a-a542-d3204a9950cd' as column: shortName18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.DecimalType (null) - returning '0,00000' as column: shippin11_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.BooleanType (null) - returning 'False' as column: shippin12_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.BooleanType (null) - returning 'False' as column: product13_18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.BooleanType (null) - returning 'False' as column: upOnly18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Type.Int64Type (null) - returning '6' as column: idCompany18_0_
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done processing result set (1 rows)
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Driver.NHybridDataReader (null) - running NHybridDataReader.Dispose()
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDataReader, open IDataReaders :0
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.BatcherImpl (null) - Closed IDbCommand, open IDbCommands: 0
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - total objects hydrated: 1
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - resolving associations for: [Product#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - loading [Company#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - creating collection wrapper:[Productups#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - done materializing entity [Product#6]
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.SessionImpl (null) - initializing non-lazy collections
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Loader.Loader (null) - done entity load
11123 [AdpaterExeMgrThread1] DEBUG NHibernate.Impl.Printer (null) - PurchaseupOrderLine{ShippingAmount=0,00000, Product=Product#6, ProductUnitaryAmount=0,80709, purchase=purchase#1, Id=1, Qtty=1}

[/quote]


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.