Uses of Interface
com.gengoai.sql.statement.UpdateStatement
-
Packages that use UpdateStatement Package Description com.gengoai.sql com.gengoai.sql.sqlite com.gengoai.sql.statement -
-
Uses of UpdateStatement in com.gengoai.sql
Methods in com.gengoai.sql that return UpdateStatement Modifier and Type Method Description static UpdateStatement
SQL. update(String statement)
Free form SQL update statementMethods in com.gengoai.sql with parameters of type UpdateStatement Modifier and Type Method Description int
SQLContext. batch(@NonNull UpdateStatement... updateStatements)
Performs a batch update for a set of update statements that do not require any values to be specified.Method parameters in com.gengoai.sql with type arguments of type UpdateStatement Modifier and Type Method Description int
SQLContext. batch(@NonNull Collection<? extends UpdateStatement> updateStatements)
Performs a batch update for a set of update statements that do not require any values to be specified. -
Uses of UpdateStatement in com.gengoai.sql.sqlite
Methods in com.gengoai.sql.sqlite that return UpdateStatement Modifier and Type Method Description UpdateStatement
SQLiteFullTextTable. rebuild()
Rebuilds the full text table -
Uses of UpdateStatement in com.gengoai.sql.statement
Classes in com.gengoai.sql.statement that implement UpdateStatement Modifier and Type Class Description class
AlterTable
Defines an SQL Alter Table statement to alter the definition of a table.class
Create
SQL create statement for SQL objects (Table, Index, Trigger, etc).class
Delete
SQL DELETE statement for delete rows from a table.class
Drop
SQL Drop statement for SQL Objects (Table, Index, Trigger, etc)class
Insert
SQL Insert Statementclass
Update
SQL Update statement
-