Catching SQLExceptions From DROP Trys
Dan Bikle


This page shows a simple .java which demonstrates how to ignore
a SQLException returned by the JVM when the user tries to DROP a
table which does not exist.  This is useful because often we don't
care if a table does not exist when we attempt to drop it.

On the other hand, if the database is sick we want an appropriate
SQLException to get thrown.

catchDropDemo.java