Here you can find the source of dropTable(Connection connection)
public static void dropTable(Connection connection) throws SQLException
//package com.java2s; //License from project: Open Source License import java.sql.Connection; import java.sql.SQLException; import java.sql.Statement; public class Main { private static final String DROP_TABLE_QUERY = "DROP TABLE matchervalue"; public static void dropTable(Connection connection) throws SQLException { Statement statement = connection.createStatement(); statement.execute(DROP_TABLE_QUERY); }/* w ww . j a va 2s . co m*/ }