要创建,更改或者删除一个类似表或者视图这样的数据库对象, 你要使用 execute() 方法。 这个方法类似于 executeQuery(),不过它不返回结果。 Example 31-7 演示了它的用法。
Example 31-7. 在 JDBC 里删除表
这个例子删除一个表。
Statement st = db.createStatement(); st.execute("DROP TABLE mytable"); st.close();