Here you can find the source of commitEL(Connection conn)
public static void commitEL(Connection conn)
//package com.java2s; //License from project: LGPL import java.sql.Connection; public class Main { public static void commitEL(Connection conn) { try {//from w w w. j ava 2 s. c o m if (conn != null) conn.commit(); } catch (Throwable e) { } } }