I want JDBC connection to MSaccess. But
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc:odbc:access");
it gives
Type mismatch: cannot convert from Connection to Connection
what is solution for that?
I m using Servlet and jsp in jsp -
Organization Name: <input type="text" name="Organization_name" ><br>
i want when Organization_name entered it will be add it in my access database i have tried but i m facing following problem
Connection con = DriverManager.getConnection("jdbc:odbc:access");
it gives Type mismatch: cannot convert from Connection to Connection
