アットウィキロゴ

Util Class

Generic Dao Class

  • Insert
public static void insertRecs(List<SObject> objs) {

    if (objs == null || objs.isEmpty()) {
        return;
    }

    try {
        insert objs;
    } catch (Exception e) {
        throw e;
    }
}
最終更新:2011年06月07日 22:46