1 16 17 package javax.servlet.jsp.jstl.sql; 18 19 import java.sql.ResultSet ; 20 import java.sql.SQLException ; 21 22 31 public class ResultSupport { 32 33 34 41 public static Result toResult(ResultSet rs) { 42 try { 43 return new ResultImpl(rs, -1, -1); 44 } catch (SQLException ex) { 45 return null; 46 } 47 } 48 49 59 public static Result toResult(ResultSet rs, int maxRows) { 60 try { 61 return new ResultImpl(rs, -1, maxRows); 62 } catch (SQLException ex) { 63 return null; 64 } 65 } 66 67 } 68 | Popular Tags |