I've created the connection using ODBC driver but still my program goes into catch block and displays the error message
the program :-;
import java.sql.*;
class ConnectingSQL1
{
public static void main(String args[])
{
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection...