Java SQL Table Drop dropTable(Connection dbConn, String tableName)

Here you can find the source of dropTable(Connection dbConn, String tableName)

Description

drop Table

License

Apache License

Declaration

public static void dropTable(Connection dbConn, String tableName) throws SQLException 

Method Source Code


//package com.java2s;
/*/*  w ww  .  jav  a2s . c  o m*/
 * Copyright 2011-2012 ancoron.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.sql.Connection;

import java.sql.SQLException;
import java.sql.Statement;

public class Main {
    public static void dropTable(Connection dbConn, String tableName) throws SQLException {
        Statement table = dbConn.createStatement();
        table.execute("DROP TABLE " + tableName);
        table.close();
    }
}

Related

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