public void drop()

in jbang/karaf-blueprint/DatabaseInitializationBean.java [67:78]


    public void drop() throws Exception {
        LOG.info("Dropping database tables ...");

        try {
            execute("drop table orders");
        } catch (Throwable e) {
            // ignore
        }
        connection.close();

        LOG.info("Database tables dropped");
    }