Class GridSqlAlterTableDropColumn


  • public class GridSqlAlterTableDropColumn
    extends GridSqlStatement
    ALTER TABLE DROP COLUMN command data holder.
    • Constructor Detail

      • GridSqlAlterTableDropColumn

        public GridSqlAlterTableDropColumn()
    • Method Detail

      • columns

        public String[] columns()
        Returns:
        Columns to drop.
      • columns

        public void columns​(String[] cols)
        Parameters:
        cols - Columns to drop.
      • ifExists

        public boolean ifExists()
        Returns:
        Quietly abort this command if column does not exist (honored only in single column case).
      • ifExists

        public void ifExists​(boolean ifExists)
        Parameters:
        ifExists - Quietly abort this command if column does not exist (honored only in single column case).
      • ifTableExists

        public boolean ifTableExists()
        Returns:
        Quietly abort this command if target table does not exist.
      • ifTableExists

        public void ifTableExists​(boolean ifTblExists)
        Parameters:
        ifTblExists - Quietly abort this command if target table does not exist.
      • tableName

        public String tableName()
        Returns:
        Target table name.
      • tableName

        public void tableName​(String tblName)
        Parameters:
        tblName - Target table name.
      • schemaName

        public String schemaName()
        Returns:
        Schema name.
      • schemaName

        public void schemaName​(String schemaName)
        Parameters:
        schemaName - Schema name.