Class AddLectureServlet

java.lang.Object
   |
   +----javax.servlet.GenericServlet
           |
           +----javax.servlet.http.HttpServlet
                   |
                   +----SQLServlet
                           |
                           +----AddLectureServlet

public class AddLectureServlet
extends SQLServlet

Constructor Index

 o AddLectureServlet()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
This is the interface for entering information about a lecture
 o doPost(HttpServletRequest, HttpServletResponse)
The main Servlet doing the insertion
 o init(ServletConfig)
Ths init Method .

Constructors

 o AddLectureServlet
 public AddLectureServlet()

Methods

 o init
 public void init(ServletConfig config) throws ServletException
Ths init Method . Gets the connection

Overrides:
init in class SQLServlet
 o doGet
 public void doGet(HttpServletRequest request,
                   HttpServletResponse response) throws ServletException, IOException
This is the interface for entering information about a lecture

Overrides:
doGet in class HttpServlet
 o doPost
 public void doPost(HttpServletRequest request,
                    HttpServletResponse response) throws ServletException, IOException
The main Servlet doing the insertion

Overrides:
doPost in class HttpServlet