I want to drop specified oracle tables, views, procedures and functions via Java JDBC Code.
For example, Suppose I've tables T1, T2, T3. Views V1, V2, V3. Procedure P1, P2, P3 and functions F1, F2, F3.
How can I delete these Tables, Views, Procedures and Functions using JDBC?
I've already tried
statement.execute("drop table T1");
statement.executeUpdate("drop table T1");
statement.executeQuery("drop table T1");
Not working !!!