|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A common base interface for InsertStatement
and UpdateStatement
.
Nested Class Summary | |
static interface |
SetStatement.SetValue
|
Method Summary | |
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,
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 |
addSet(Column.Name pColumn,
java.lang.String 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,
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 pColumn,
java.lang.String pValue)
Adds a SET clause setting the given column to the value pValue |
void |
addSet(java.lang.String pColumn)
Adds a SET clause setting the given column to a value given by a placeholder. |
void |
addSet(java.lang.String pColumn,
boolean pValue)
Adds a SET clause setting the given column to the value TRUE or FALSE, depending on pValue |
void |
addSet(java.lang.String pColumn,
byte pValue)
Adds a SET clause setting the given column to the value pValue . |
void |
addSet(java.lang.String pColumn,
float pValue)
Adds a SET clause setting the given column to the value pValue . |
void |
addSet(java.lang.String pColumn,
int pValue)
Adds a SET clause setting the given column to the value pValue . |
void |
addSet(java.lang.String pColumn,
long pValue)
Adds a SET clause setting the given column to the value pValue . |
void |
addSet(java.lang.String pColumn,
short pValue)
Adds a SET clause setting the given column to the value pValue . |
void |
addSet(java.lang.String pColumn,
java.lang.String pValue)
Adds a SET clause setting the given column to the value pValue . |
void |
addSetDate(Column.Name pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the date value pValue . |
void |
addSetDate(Column pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the date value pValue |
void |
addSetDate(java.lang.String pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the date value pValue . |
void |
addSetDateTime(Column.Name pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the datetime value pValue . |
void |
addSetDateTime(Column pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the datetime value pValue |
void |
addSetDateTime(java.lang.String pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the datetime value pValue . |
void |
addSetNull(Column.Name 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(java.lang.String pColumn)
Adds a SET clause setting the given column to NULL. |
void |
addSetTime(Column.Name pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the time value pValue . |
void |
addSetTime(Column pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the time value pValue |
void |
addSetTime(java.lang.String pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the time value pValue . |
java.util.Iterator |
getSetValues()
Returns an Iterator to all values being set.
|
Methods inherited from interface net.sf.jaxme.sqls.Statement |
getSQLFactory, getTableReference, setTable |
Method Detail |
public java.util.Iterator getSetValues()
Returns an Iterator
to all values being set.
Any element in the iterator is an instance of SetStatement.SetValue
.
public void addSetNull(Column pColumn)
Adds a SET clause setting the given column to NULL.
public void addSetNull(Column.Name pColumn)
Adds a SET clause setting the given column to NULL.
public void addSetNull(java.lang.String pColumn)
Adds a SET clause setting the given column to NULL.
public void addSet(Column pColumn)
Adds a SET clause setting the given column to a value given by a placeholder.
public void addSet(Column.Name pColumn)
Adds a SET clause setting the given column to a value given by a placeholder.
public void addSet(java.lang.String pColumn)
Adds a SET clause setting the given column to a value given by a placeholder.
public void addSet(Column pColumn, byte pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column.Name pColumn, byte pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(java.lang.String pColumn, byte pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column pColumn, short pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column.Name pColumn, short pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(java.lang.String pColumn, short pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column pColumn, int pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column.Name pColumn, int pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(java.lang.String pColumn, int pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column pColumn, long pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column.Name pColumn, long pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(java.lang.String pColumn, long pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column pColumn, float pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column.Name pColumn, float pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(java.lang.String pColumn, float pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column pColumn, boolean pValue)
Adds a SET clause setting the given column to the value
TRUE or FALSE, depending on pValue
.
public void addSet(Column.Name pColumn, boolean pValue)
Adds a SET clause setting the given column to the value
TRUE or FALSE, depending on pValue
.
public void addSet(java.lang.String pColumn, boolean pValue)
Adds a SET clause setting the given column to the value
TRUE or FALSE, depending on pValue
.
public void addSet(Column pColumn, java.lang.String pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(Column.Name pColumn, java.lang.String pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSet(java.lang.String pColumn, java.lang.String pValue)
Adds a SET clause setting the given column to the value
pValue
.
public void addSetDateTime(Column pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the datetime
value pValue
.
public void addSetDateTime(Column.Name pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the datetime
value pValue
.
public void addSetDateTime(java.lang.String pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the datetime
value pValue
.
public void addSetTime(Column pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the time value
pValue
. Shortcut for
addSet(getTable().newColumnReference(pColumn), pValue)
.
public void addSetTime(Column.Name pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the time value
pValue
. Shortcut for
addSet(getTable().newColumnReference(pColumn), pValue)
.
public void addSetTime(java.lang.String pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the time value
pValue
.
public void addSetDate(Column pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the date value
pValue
.
public void addSetDate(Column.Name pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the date value
pValue
.
public void addSetDate(java.lang.String pColumn, java.util.Calendar pValue)
Adds a SET clause setting the given column to the date value
pValue
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |