Uses of Class
com.gengoai.sql.statement.Update
-
Packages that use Update Package Description com.gengoai.sql com.gengoai.sql.object com.gengoai.sql.sqlite com.gengoai.sql.statement -
-
Uses of Update in com.gengoai.sql
Methods in com.gengoai.sql with parameters of type Update Modifier and Type Method Description protected String
SQLDialect. update(Update update)
Generates the SQL For an update statement -
Uses of Update in com.gengoai.sql.object
Methods in com.gengoai.sql.object that return Update Modifier and Type Method Description Update
Table. update()
Creates an update statement for this tableUpdate
Table. update(@NonNull UpdateType updateType)
Creates an update statement for this table -
Uses of Update in com.gengoai.sql.sqlite
Methods in com.gengoai.sql.sqlite that return Update Modifier and Type Method Description Update
SQLiteFullTextTable. update()
Creates an update statement for this tableUpdate
SQLiteFullTextTable. update(@NonNull UpdateType updateType)
Creates an update statement for this table -
Uses of Update in com.gengoai.sql.statement
Methods in com.gengoai.sql.statement that return Update Modifier and Type Method Description Update
Update. set(@NonNull SQLElement column, @NonNull SQLElement value)
Adds a set parameter to the update defined as a column and value.Update
Update. set(@NonNull String column, @NonNull SQLElement value)
Adds a set parameter to the update defined as a column and value.Update
Update. setIndexedParameter(@NonNull SQLElement column)
Adds a set parameter for the given column and using an indexed parameter value for use inPreparedStatement
Update
Update. setNamedParameter(@NonNull SQLElement column)
Adds a set parameter for the given column and using a named parameter value for use inNamedPreparedStatement
static Update
Update. table(@NonNull Table table)
Creates a new Update statement which will update the given tablestatic Update
Update. table(@NonNull SQLElement table)
Creates a new Update statement which will update the given tableUpdate
Update. type(@NonNull UpdateType type)
Sets the type of update to perform.Update
Update. where(SQLElement whereClause)
Sets the criteria (i.e.Update
Update. where(String whereClause)
Sets the criteria (i.e.
-