代码如下:
<%!
String GetColumn(ResultSet rs,String colName){
return rs.getString(colName);
}
%>错误提示如下:
unreported exception java.sql.SQLException; must be caught or declared to be thrown请问该如何处理,函数该如何写?