Class SQLAlterStatement.SQLAlterStatementBuilder

java.lang.Object
com.github.tadukoo.database.mysql.syntax.statement.SQLAlterStatement.SQLAlterStatementBuilder
All Implemented Interfaces:
SQLAlterStatement.Build, SQLAlterStatement.ColumnDef, SQLAlterStatement.ColumnDefOrForeignKey, SQLAlterStatement.ColumnName, SQLAlterStatement.Operation, SQLAlterStatement.TableName, SQLAlterStatement.Type
Enclosing class:
SQLAlterStatement

A builder to use to build a SQLAlterStatement. It takes the following parameters:
SQL Alter Statement Parameters
Parameter Description Default or Required
type The type to be altered Required
tableName The name of the table to alter Required
operation The operation to perform Required
columnName The name of the column to alter Either this or columnDef or foreignKey required, depending on operation
columnDef The column definition to be used Either this or columnName or foreign key required, depending on operation
foreignKey The foreign key to be added to the table Either this or columnName or columnDef required, depending on operation
Version:
Alpha v.0.3
Author:
Logan Ferree (Tadukoo)