first u've 2 create a DSN of ur database in ODBC
for example the DSN name is "mydb"
now in ur JSP page, import the java.sql.* package, and then...
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc:odbc:mydb");
|