void | addSet(String pColumn) - Adds a SET clause setting the given column to a value
given by a placeholder.
|
void | addSet(String pColumn, Object pObject) - Adds a SET clause setting the given column to the given value.
|
void | addSet(String pColumn, String pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(String pColumn, boolean pValue) - Adds a SET clause setting the given column to the value
TRUE or FALSE, depending on
pValue .
|
void | addSet(String pColumn, byte pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(String pColumn, float pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(String pColumn, int pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(String pColumn, long pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(String pColumn, short pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column pColumn) - Adds a SET clause setting the given column to a value
given by a placeholder.
|
void | addSet(Column pColumn, Object pObject) - Adds a SET clause setting the given column to the given value.
|
void | addSet(Column pColumn, String pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column pColumn, boolean pValue) - Adds a SET clause setting the given column to the value
TRUE or FALSE, depending on
pValue .
|
void | addSet(Column pColumn, byte pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column pColumn, float pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column pColumn, int pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column pColumn, long pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column pColumn, short pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column.Name pColumn) - Adds a SET clause setting the given column to a value
given by a placeholder.
|
void | addSet(Column.Name pColumn, Object pObject) - Adds a SET clause setting the given column to the given value.
|
void | addSet(Column.Name pColumn, String pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column.Name pColumn, boolean pValue) - Adds a SET clause setting the given column to the value
TRUE or FALSE, depending on
pValue .
|
void | addSet(Column.Name pColumn, byte pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column.Name pColumn, float pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column.Name pColumn, int pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column.Name pColumn, long pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSet(Column.Name pColumn, short pValue) - Adds a SET clause setting the given column to the value
pValue .
|
void | addSetDate(String pColumn, Calendar pValue) - Adds a SET clause setting the given column to the date value
pValue .
|
void | addSetDate(Column pColumn, Calendar pValue) - Adds a SET clause setting the given column to the date value
pValue .
|
void | addSetDate(Column.Name pColumn, Calendar pValue) - Adds a SET clause setting the given column to the date value
pValue .
|
void | addSetDateTime(String pColumn, Calendar pValue) - Adds a SET clause setting the given column to the datetime
value
pValue .
|
void | addSetDateTime(Column pColumn, Calendar pValue) - Adds a SET clause setting the given column to the datetime
value
pValue .
|
void | addSetDateTime(Column.Name pColumn, Calendar pValue) - Adds a SET clause setting the given column to the datetime
value
pValue .
|
void | addSetNull(String pColumn) - Adds a SET clause setting the given column to NULL.
|
void | addSetNull(Column pColumn) - Adds a SET clause setting the given column to NULL.
|
void | addSetNull(Column.Name pColumn) - Adds a SET clause setting the given column to NULL.
|
void | addSetTime(String pColumn, Calendar pValue) - Adds a SET clause setting the given column to the time value
pValue .
|
void | addSetTime(Column pColumn, Calendar pValue) - Adds a SET clause setting the given column to the time value
pValue .
|
void | addSetTime(Column.Name pColumn, Calendar pValue) - Adds a SET clause setting the given column to the time value
pValue .
|
Iterator | getSetValues() - Returns an
Iterator to all values being set.
|