ERROR MESSAGE
HI! ALL
I AM GETTING AN ERROR MESSAGE "package sun.jdbc does not exists"
code:
import java.io.*;
import java.sql.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class HelloWorld extends HttpServlet
{
public void doGEt(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException
{
Connection con=null;
Statement stmt=null;
ResultSet rs=null;
res.setContentType("text/html");
PrintWriter out=res.getWriter();
try{
Class.forName(sun.jdbc.odbc.JdbcOdbcDriver);
con=DriverManager.getConnection("jdbc:odbc:Access","user","password");
please help me

