Example usage for org.hibernate.dialect Dialect getDropTableString

List of usage examples for org.hibernate.dialect Dialect getDropTableString

Introduction

In this page you can find the example usage for org.hibernate.dialect Dialect getDropTableString.

Prototype

public String getDropTableString(String tableName) 

Source Link

Document

Generate a DROP TABLE statement

Usage

From source file:net.e6tech.elements.persist.hibernate.ModifiedTableGenerator.java

License:Apache License

@Override
public String[] sqlDropStrings(Dialect dialect) throws HibernateException {
    return new String[] { dialect.getDropTableString(renderedTableName) };
}