Java SQL Table Drop dropTable(java.sql.Connection conn, java.lang.String table)

Here you can find the source of dropTable(java.sql.Connection conn, java.lang.String table)

Description

Drops a table from the JDBC database.

License

Apache License

Parameter

Parameter Description
conn (undocumented)
table (undocumented)

Declaration

static public void dropTable(java.sql.Connection conn, java.lang.String table) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**//from   ww  w.  ja va 2  s  .c o  m
     * Drops a table from the JDBC database.
     * @param conn (undocumented)
     * @param table (undocumented)
     */
    static public void dropTable(java.sql.Connection conn, java.lang.String table) {
        throw new RuntimeException();
    }
}

Related

  1. dropTable(Connection conn, String tableName)
  2. dropTable(Connection connection)
  3. dropTable(Connection connection)
  4. dropTable(Connection connection, String tableName)
  5. dropTable(Connection dbConn, String tableName)
  6. dropTable(Statement st, String query)
  7. dropTableIfExists(String tableName, java.sql.Statement stmt)
  8. dropTablesIfExist(Statement statement)