Does this finally get executed ?

From: GIMME (gimme_this_gimme_that_at_yahoo.com)
Date: 10/29/04


Date: 29 Oct 2004 13:59:44 -0700

Psuedo code ...

Does sc.close() get executed ?

public static Employee get(int id ) throws Exception
{
   try {
     SomeConnection sc = new SomeConnection();
     return new Employee();
   }finally {
     sc.close();
}