![]() |
The Java Developers Almanac 1.4Order this book from Amazon. |
e246. Deleting a Database TableThis example deletes a table calledmy_table from a database.
try { Statement stmt = connection.createStatement(); stmt.executeUpdate("DROP TABLE my_table"); } catch (SQLException e) { }
e247. Listing All Table Names in a Database e248. Creating a MySQL Table to Store Java Types e249. Creating an Oracle Table to Store Java Types e250. Creating a SQLServer Table to Store Java Types © 2002 Addison-Wesley. |