Uses of Interface
org.jooq.AlterViewFinalStep
-
Packages that use AlterViewFinalStep Package Description org.jooq Theorg.jooq
package contains jOOQ's public API. -
-
Uses of AlterViewFinalStep in org.jooq
Methods in org.jooq that return AlterViewFinalStep Modifier and Type Method Description AlterViewFinalStep
AlterViewStep. comment(String comment)
Specify a comment for a table using MySQL's syntax (which MySQL currently doesn't support on views).AlterViewFinalStep
AlterViewStep. comment(Comment comment)
Specify a comment for a table using MySQL's syntax (which MySQL currently doesn't support on views).AlterViewFinalStep
AlterViewStep. renameTo(String newName)
Add aRENAME TO
clause to theALTER VIEW
statement.AlterViewFinalStep
AlterViewStep. renameTo(Name newName)
Add aRENAME TO
clause to theALTER VIEW
statement.AlterViewFinalStep
AlterViewStep. renameTo(Table<?> newName)
Add aRENAME TO
clause to theALTER VIEW
statement.
-