|
class Database {
try {
Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection ("jdbc: odbc: student", "sa", "");
}
catch (ClassNotFoundException e)
{
}
}
There was an error in the try line! !!
Excuse me, what should I do? I usually use try like this, but this time I don't know what went wrong! |
|