Package de.jaggl.sqlbuilder.queries
Class Update
- java.lang.Object
-
- de.jaggl.sqlbuilder.queries.Update
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringbuild(Dialect dialect, Indentation indentation)static voidclearWheres(Update update)static Updatecopy(Update update)Updateset(Column column, Column otherColumn)Updateset(Column column, Function function)Updateset(NumberColumn<?,?> column, double value)Updateset(NumberColumn<?,?> column, long value)Updateset(NumberColumn<?,?> column, Number value)Updateset(StringColumn<?> column, CharSequence value)Updatewhere(Condition condition)UpdatewhereNot(Condition condition)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.jaggl.sqlbuilder.queries.Query
build, build, build, build, build, prepare, prepare, prepare, print, print, print, print, print, print, print, print, print, print, print, print, println, println, println, println, println, println, println, println, println, println, println, println
-
-
-
-
Method Detail
-
set
public Update set(StringColumn<?> column, CharSequence value)
-
set
public Update set(NumberColumn<?,?> column, Number value)
-
set
public Update set(NumberColumn<?,?> column, long value)
-
set
public Update set(NumberColumn<?,?> column, double value)
-
build
public String build(Dialect dialect, Indentation indentation)
-
clearWheres
public static void clearWheres(Update update)
-
-