public interface ValueType
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
bindValue(Connection conn,
CallableStatement cs,
String parameterName,
Object value) |
void |
bindValue(Connection conn,
PreparedStatement ps,
int index,
Object value)
Bind the value.
|
int |
getSqlType()
The SQL type of JDBC.
|
Object |
getValue(CallableStatement cs,
int index) |
Object |
getValue(CallableStatement cs,
String parameterName) |
Object |
getValue(ResultSet rs,
int index) |
Object |
getValue(ResultSet rs,
String columnName) |
void |
registerOutParameter(Connection conn,
CallableStatement cs,
int index) |
void |
registerOutParameter(Connection conn,
CallableStatement cs,
String parameterName) |
Object getValue(ResultSet rs, int index) throws SQLException
SQLExceptionObject getValue(ResultSet rs, String columnName) throws SQLException
SQLExceptionObject getValue(CallableStatement cs, int index) throws SQLException
SQLExceptionObject getValue(CallableStatement cs, String parameterName) throws SQLException
SQLExceptionvoid bindValue(Connection conn, PreparedStatement ps, int index, Object value) throws SQLException
conn - The connection for the database. (NotNull)ps - The prepared statement. (NotNull)index - The parameter index.value - The parameter value. (NullAllowed)SQLException - When it fails to handle the SQL.void bindValue(Connection conn, CallableStatement cs, String parameterName, Object value) throws SQLException
SQLExceptionvoid registerOutParameter(Connection conn, CallableStatement cs, int index) throws SQLException
SQLExceptionvoid registerOutParameter(Connection conn, CallableStatement cs, String parameterName) throws SQLException
SQLExceptionint getSqlType()
Copyright © 2014–2015 The DBFlute Project. All rights reserved.