Connection con = pool.engageConnection(10);
try {
con.setAutoCommit(true);
return create(con, name, typeID, parentID, size, ownerID);
} catch (SQLException e) {
throw new DBException(e);
} finally {
try {
if (con != null)
con.close();
} catch (SQLException e) {