|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Adapter for PreparedStatement management
Method Summary | |
void |
setBigDecimal(java.sql.PreparedStatement ps,
int idx,
java.math.BigDecimal o)
Assignes a value into a PreparedStatement |
void |
setBigInteger(java.sql.PreparedStatement ps,
int idx,
java.math.BigInteger o)
Assignes a value into a PreparedStatement |
void |
setBoolean(java.sql.PreparedStatement ps,
int idx,
boolean o)
Assignes a value into a PreparedStatement |
void |
setByte(java.sql.PreparedStatement ps,
int idx,
byte o)
Assignes a value into a PreparedStatement |
void |
setByteArray(java.sql.PreparedStatement ps,
int idx,
byte[] o)
Assignes a value into a PreparedStatement |
void |
setChar(java.sql.PreparedStatement ps,
int idx,
char o)
Assignes a value into a PreparedStatement |
void |
setCharArray(java.sql.PreparedStatement ps,
int idx,
char[] o)
Assignes a value into a PreparedStatement |
void |
setDate(java.sql.PreparedStatement ps,
int idx,
java.util.Date o,
java.lang.String columnType)
Assignes a value into a PreparedStatement |
void |
setDouble(java.sql.PreparedStatement ps,
int idx,
double o)
Assignes a value into a PreparedStatement |
void |
setFloat(java.sql.PreparedStatement ps,
int idx,
float o)
Assignes a value into a PreparedStatement |
void |
setInt(java.sql.PreparedStatement ps,
int idx,
int o)
Assignes a value into a PreparedStatement |
void |
setLong(java.sql.PreparedStatement ps,
int idx,
long o)
Assignes a value into a PreparedStatement |
void |
setNull(java.sql.PreparedStatement ps,
int idx,
int sqlType)
Assignes a null value into a PreparedStatement |
void |
setOboolean(java.sql.PreparedStatement ps,
int idx,
java.lang.Boolean o)
Assignes a value into a PreparedStatement |
void |
setObyte(java.sql.PreparedStatement ps,
int idx,
java.lang.Byte o)
Assignes a value into a PreparedStatement |
void |
setOchar(java.sql.PreparedStatement ps,
int idx,
java.lang.Character o)
Assignes a value into a PreparedStatement |
void |
setOdouble(java.sql.PreparedStatement ps,
int idx,
java.lang.Double o)
Assignes a value into a PreparedStatement |
void |
setOfloat(java.sql.PreparedStatement ps,
int idx,
java.lang.Float o)
Assignes a value into a PreparedStatement |
void |
setOint(java.sql.PreparedStatement ps,
int idx,
java.lang.Integer o)
Assignes a value into a PreparedStatement |
void |
setOlong(java.sql.PreparedStatement ps,
int idx,
java.lang.Long o)
Assignes a value into a PreparedStatement |
void |
setOshort(java.sql.PreparedStatement ps,
int idx,
java.lang.Short o)
Assignes a value into a PreparedStatement |
void |
setSerialized(java.sql.PreparedStatement ps,
int idx,
java.io.Serializable o)
Assignes a value into a PreparedStatement |
void |
setShort(java.sql.PreparedStatement ps,
int idx,
short o)
Assignes a value into a PreparedStatement |
void |
setString(java.sql.PreparedStatement ps,
int idx,
java.lang.String o)
Assignes a value into a PreparedStatement |
Method Detail |
public void setNull(java.sql.PreparedStatement ps, int idx, int sqlType) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatementsqlType
- is the type of the column
java.sql.SQLException
public void setBoolean(java.sql.PreparedStatement ps, int idx, boolean o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setOboolean(java.sql.PreparedStatement ps, int idx, java.lang.Boolean o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setChar(java.sql.PreparedStatement ps, int idx, char o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setOchar(java.sql.PreparedStatement ps, int idx, java.lang.Character o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setByte(java.sql.PreparedStatement ps, int idx, byte o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setObyte(java.sql.PreparedStatement ps, int idx, java.lang.Byte o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setShort(java.sql.PreparedStatement ps, int idx, short o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setOshort(java.sql.PreparedStatement ps, int idx, java.lang.Short o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setInt(java.sql.PreparedStatement ps, int idx, int o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setOint(java.sql.PreparedStatement ps, int idx, java.lang.Integer o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setLong(java.sql.PreparedStatement ps, int idx, long o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setOlong(java.sql.PreparedStatement ps, int idx, java.lang.Long o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setFloat(java.sql.PreparedStatement ps, int idx, float o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setOfloat(java.sql.PreparedStatement ps, int idx, java.lang.Float o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setDouble(java.sql.PreparedStatement ps, int idx, double o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setOdouble(java.sql.PreparedStatement ps, int idx, java.lang.Double o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setString(java.sql.PreparedStatement ps, int idx, java.lang.String o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setDate(java.sql.PreparedStatement ps, int idx, java.util.Date o, java.lang.String columnType) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setCharArray(java.sql.PreparedStatement ps, int idx, char[] o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setByteArray(java.sql.PreparedStatement ps, int idx, byte[] o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setBigDecimal(java.sql.PreparedStatement ps, int idx, java.math.BigDecimal o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setBigInteger(java.sql.PreparedStatement ps, int idx, java.math.BigInteger o) throws java.sql.SQLException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
public void setSerialized(java.sql.PreparedStatement ps, int idx, java.io.Serializable o) throws java.sql.SQLException, java.io.IOException
ps
- is the PreparedStatementidx
- is the index of the the value in the PreparedStatemento
- is the value to assign
java.sql.SQLException
java.io.IOException
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |