CloneSet1210


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
18210.993non_pp_embedded_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
118625
src/NHibernate/Impl/SessionImpl.cs
2181759
src/NHibernate/Impl/SessionImpl.cs
Clone Instance
1
Line Count
18
Source Line
625
Source File
src/NHibernate/Impl/SessionImpl.cs

                                try
                                {
                                        plan.PerformList(queryParameters, this, results);
                                        success = true;
                                }
                                catch (HibernateException)
                                {
                                        // Do not call Convert on HibernateExceptions
                                        throw;
                                }
                                catch (Exception e)
                                {
                                        throw Convert(e, "Could not execute query");
                                }
                                finally
                                {
                                        dontFlushFromFind--;
                                        AfterOperation(success);
                                }


Clone Instance
2
Line Count
18
Source Line
1759
Source File
src/NHibernate/Impl/SessionImpl.cs

                                try
                                {
                                        plan.PerformList(queryParameters, this, results);
                                        success = true;
                                }
                                catch (HibernateException)
                                {
                                        // Do not call Convert on HibernateExceptions
                                        throw;
                                }
                                catch (Exception e)
                                {
                                        throw Convert(e, "could not execute query");
                                }
                                finally
                                {
                                        dontFlushFromFind--;
                                        AfterOperation(success);
                                }


Clone AbstractionParameter Count: 1Parameter Bindings

try
{
   plan.PerformList(queryParameters, this, results);
   success = true;
}
catch (HibernateException)
{
   // Do not call Convert on HibernateExceptions
   throw;
}
catch (Exception e)
{
   throw Convert(e, [[#variable27ba5be0]]);
}
finally
{
   dontFlushFromFind--;
   AfterOperation(success);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#27ba5be0]]
"Could not execute query" 
12[[#27ba5be0]]
"could not execute query"