public static interface SQLBuilder_save.AlterTableBuilder
Modifier and Type | Method and Description |
---|---|
SQLBuilder_save.AlterTableBuilder |
add_column(String columnName,
int type,
int type_p,
int type_s,
boolean isPk,
boolean allowNulls,
boolean isAutomatic,
Object defaultValue) |
SQLBuilder_save.AlterTableBuilder |
alter_column(String columnName,
int type,
int type_p,
int type_s,
boolean isPk,
boolean allowNulls,
boolean isAutomatic,
Object defaultValue) |
SQLBuilder_save.AlterTableBuilder |
drop_column(String columnName) |
SQLBuilder_save.AlterTableBuilder |
rename_column(String source,
String target) |
SQLBuilder_save.AlterTableBuilder |
table(String tableName) |
SQLBuilder_save.AlterTableBuilder |
table(String dbName,
String schemaName,
String tableName) |
List<String> |
toStrings() |
SQLBuilder_save.AlterTableBuilder table(String tableName)
SQLBuilder_save.AlterTableBuilder table(String dbName, String schemaName, String tableName)
SQLBuilder_save.AlterTableBuilder drop_column(String columnName)
SQLBuilder_save.AlterTableBuilder add_column(String columnName, int type, int type_p, int type_s, boolean isPk, boolean allowNulls, boolean isAutomatic, Object defaultValue)
SQLBuilder_save.AlterTableBuilder alter_column(String columnName, int type, int type_p, int type_s, boolean isPk, boolean allowNulls, boolean isAutomatic, Object defaultValue)
SQLBuilder_save.AlterTableBuilder rename_column(String source, String target)