Changeset 2405


Ignore:
Timestamp:
11/01/09 18:16:32 (2 years ago)
Author:
jvelde
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • molgenis/3.3/src/org/molgenis/framework/db/jdbc/AbstractJDBCMapper.java

    r2403 r2405  
    717717                                { 
    718718                                        // load mrefs 
    719                                         try{ 
     719                                        //try{ 
    720720                                        mapMrefs(entityBatch); 
     721                                        //UPDATE: this only fails when running EXPORT on MYERS dataset. 
     722                                        //proposed solution: close rs before this query 
     723                                        //ie ---> per batch 2 seperated resultsets 
     724                                        // 
    721725                                        //FIXME: this FAILS because rs is open!! program ends without try-catch 
    722726                                        //strange: problem seems to occur in very specific cases.. 
     
    727731                                        //is the function that opens another rs allowed here? 
    728732                                        //ie. can it be executed at all? and why would it fail if it has been tested? 
    729                                         } 
    730                                         catch(Exception e){ 
    731                                                 e.printStackTrace(); 
    732                                         } 
     733                                        //} 
     734                                        //catch(Exception e){ 
     735                                                //e.printStackTrace(); 
     736                                        //} 
    733737                                        for (E e : entityBatch) 
    734738                                        { 
Note: See TracChangeset for help on using the changeset viewer.