<%@page import="com.entity.ConnectionDtls"%> <%@page import="java.util.List"%> <%@page import="com.conn.DbConnect"%> <%@page import="com.dao.ConnectionDAOImpl"%> <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> Insert title here <%@include file = "allCss.jsp" %> <%@include file = "nav.jsp" %> <% String msg = request.getParameter("msg"); if ("deleted".equals(msg)) { %> <% } %>

View All Connection


<% ConnectionDAOImpl dao = new ConnectionDAOImpl(DbConnect.getConn()); List list = dao.getViewConnection(); for (ConnectionDtls n : list) { %> <% } %>
Connection Id Customer Id Connection Type Connection Start Date Occupation Load Plot No. City Pincode Address State Description Delete
<%=n.getConnectionid()%> <%=n.getCustomerid() %> <%=n.getConnectiontype()%> <%=n.getConnectionstartdate()%> <%=n.getOccupation()%> <%=n.getConnectionload()%> <%=n.getPlotno()%> <%=n.getCity()%> <%=n.getPincode()%> <%=n.getAddress()%> <%=n.getState()%> <%=n.getDescription()%> Remove