public class ResolvedDbType extends AbstractDbType
id, name
Constructor and Description |
---|
ResolvedDbType(int id,
String name) |
Modifier and Type | Method and Description |
---|---|
Object |
getParameterValue(CallableStatement statement,
int index)
Gets the value of an output parameter
|
void |
setParameterValue(PreparedStatement statement,
int index,
Object value)
Sets the value of an input parameter
|
getId, getName, registerOutParameter, toString
public ResolvedDbType(int id, String name)
public void setParameterValue(PreparedStatement statement, int index, Object value) throws SQLException
DbType
statement
- statement that contains the parameterindex
- index of the parameter in the statement (first parameter is 1, the second is 2, etc)value
- value to assignSQLException
- if parameterIndex does not correspond to a parameter marker in the SQL statement;
if a database access error occurs; this method is called on a closed PreparedStatement or the type of
the given object is ambiguouspublic Object getParameterValue(CallableStatement statement, int index) throws SQLException
DbType
statement
- statement that contains the parameterindex
- index of the parameter in the statement (first parameter is 1, the second is 2, etc)SQLException
- if parameterIndex does not correspond to a parameter marker in the SQL statement;
if a database access error occurs; this method is called on a closed statementCopyright © 2003–2016 MuleSoft, Inc.. All rights reserved.