Class GridSqlDropTable
- java.lang.Object
-
- org.apache.ignite.internal.processors.query.h2.sql.GridSqlStatement
-
- org.apache.ignite.internal.processors.query.h2.sql.GridSqlDropTable
-
public class GridSqlDropTable extends GridSqlStatement
DROP TABLE statement.
-
-
Field Summary
-
Fields inherited from class org.apache.ignite.internal.processors.query.h2.sql.GridSqlStatement
limit
-
-
Constructor Summary
Constructors Constructor Description GridSqlDropTable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSQL()booleanifExists()voidifExists(boolean ifExists)StringschemaName()voidschemaName(String schemaName)StringtableName()voidtableName(String tblName)
-
-
-
Method Detail
-
schemaName
public String schemaName()
- Returns:
- Schema name.
-
schemaName
public void schemaName(String schemaName)
- Parameters:
schemaName- Schema name.
-
tableName
public String tableName()
- Returns:
- Table name.
-
tableName
public void tableName(String tblName)
- Parameters:
tblName- Table name.
-
ifExists
public boolean ifExists()
- Returns:
- Quietly ignore this command if table does not exist.
-
ifExists
public void ifExists(boolean ifExists)
- Parameters:
ifExists- Quietly ignore this command if table does not exist.
-
getSQL
public String getSQL()
- Specified by:
getSQLin classGridSqlStatement- Returns:
- Generate sql.
-
-