simpleDelete( con, bean , properties );
}
public void simpleDelete( SimpleBean bean ) throws Exception
{
SimpleDBConnection dbc = new SimpleDBConnection();
Map<String,String> properties = bean.describe();
Connection con = null;
try
{
con = dbc.getDBConnection();
simpleDelete( con, bean, properties );
}
finally
{
dbc.closeDBConnection(con);
}
}