Here you can find the source of dropTable(java.sql.Connection conn, java.lang.String table)
Parameter | Description |
---|---|
conn | (undocumented) |
table | (undocumented) |
static public void dropTable(java.sql.Connection conn, java.lang.String table)
//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(); } }