Uses of Class
com.mrivanplays.sqlhelper.statement.AlterStatement
-
Packages that use AlterStatement Package Description com.mrivanplays.sqlhelper com.mrivanplays.sqlhelper.statement -
-
Uses of AlterStatement in com.mrivanplays.sqlhelper
Methods in com.mrivanplays.sqlhelper that return AlterStatement Modifier and Type Method Description AlterStatement
SQLHelper. alterTable()
Creates a new "ALTER" query object. -
Uses of AlterStatement in com.mrivanplays.sqlhelper.statement
Methods in com.mrivanplays.sqlhelper.statement that return AlterStatement Modifier and Type Method Description AlterStatement
AlterStatement. add(String columnName, String type)
Mark the statement to add a column with the specified column name and column typeAlterStatement
AlterStatement. alterColumn(String columnName, String type)
Make the statement to modify the specified column name's type to the specified new type.AlterStatement
AlterStatement. dropColumn(String columnName)
Mark the statement to drop the column specified.AlterStatement
AlterStatement. table(String tableName)
Mark the statement to execute for the specified table.
-