Project:
View Revisions: Issue #33200 | [ All Revisions ] [ Back to Issue ] | ||
Summary | 0033200: getId in DAL proxy loads object in memory | ||
Revision | 2016-07-13 15:08 by alostale | ||
Steps To Reproduce | 1. Enable Hibernate debug SQL logging 2. Execute the following code: Order proxy = OBDal.getInstance().getProxy(Order.class, SOME_KNOWN_ORDER_ID); proxy.getId(); 3. Check when 2nd line is executed the object is loaded in memory: select to c_order is executed |
||
Revision | 2016-06-14 09:03 by alostale | ||
Steps To Reproduce | 1. Enable Hibernate debug SQL logging 2. Execute the following code: Order proxy = OBDal.getInstance().getProxy(Order.class, SOME_UNKNOWN_ORDER_ID); proxy.getId(); 3. Check when 2nd line is executed the object is loaded in memory: select to c_order is executed |
||
Revision | 2016-06-09 09:43 by alostale | ||
Steps To Reproduce | 1. Enable Hibernate debug SQL logging 2. Execute the following code: Order proxy = OBDal.getInstance().getProxy(Order.class, SOME_KNOWN_ORDER_ID); proxy.getId(); 3. Check when 2nd line is executed the object is loaded in memory: select to c_order is executed |
Copyright © 2000 - 2009 MantisBT Group |