Class Tmp; try{Tmp = Class.forName ("jdbc.odbc.JdbcOdbcDriver");} catch(ClassNotFoundException ex) { txtDesc.setText("ClassNotFoundException: "+ex.getMessage()); return false; } Driver d; try{d = (Driver) Tmp.newInstance();} catch(Exception ex) { txtDesc.setText("Exception: "+ex.getMessage()); return false; } if(d.jdbcCompliant() == false) { txtDesc.setText("Driver not JDBC compliant!"); return false; } try{ if(d.acceptsURL(DBurl)== false) { txtDesc.setText("Won't accept!"); return false; }

Database Programming with JDBC (Web Techniques, Oct 1996)
Related Reading
More Insights
INFO-LINK
![]() |
To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy. |