Uses of Class
com.gengoai.sql.statement.Create
-
Packages that use Create Package Description com.gengoai.sql com.gengoai.sql.object com.gengoai.sql.statement -
-
Uses of Create in com.gengoai.sql
Methods in com.gengoai.sql with parameters of type Create Modifier and Type Method Description protected String
SQLDialect. createIndex(Create createStatement)
Create index string.protected String
SQLDialect. createTable(Create statement)
Create table string.protected String
SQLDialect. createTrigger(Create createStatement)
Create trigger string. -
Uses of Create in com.gengoai.sql.object
Methods in com.gengoai.sql.object that return Create Modifier and Type Method Description Create
SQLObject. create()
Creates a newCreate
statement setting the object to be created as this object. -
Uses of Create in com.gengoai.sql.statement
Methods in com.gengoai.sql.statement that return Create Modifier and Type Method Description Create
Create. failIfExists()
Fail if the object trying to be created already existsCreate
Create. ifNotExists()
Only create the object if it does not existCreate
Create. ifNotExists(boolean ifNotExists)
Set whether or not to fail or not when creating an object that already exists
-