org.seasar.extension.jdbc.impl
クラス CallableStatementWrapper
java.lang.Object
org.seasar.extension.jdbc.impl.CallableStatementWrapper
- すべての実装インタフェース:
- java.sql.CallableStatement, java.sql.PreparedStatement, java.sql.Statement
- 直系の既知のサブクラス:
- BooleanToIntCallableStatement
- public class CallableStatementWrapper
- extends java.lang.Object
- implements java.sql.CallableStatement
CallableStatement
のラッパです。
- 作成者:
- higa
インタフェース java.sql.Statement から継承したフィールド |
CLOSE_ALL_RESULTS, CLOSE_CURRENT_RESULT, EXECUTE_FAILED, KEEP_CURRENT_RESULT, NO_GENERATED_KEYS, RETURN_GENERATED_KEYS, SUCCESS_NO_INFO |
メソッドの概要 |
void |
addBatch()
|
void |
addBatch(java.lang.String sql)
|
void |
cancel()
|
void |
clearBatch()
|
void |
clearParameters()
|
void |
clearWarnings()
|
void |
close()
|
boolean |
execute()
|
boolean |
execute(java.lang.String sql)
|
boolean |
execute(java.lang.String sql,
int autoGeneratedKeys)
|
boolean |
execute(java.lang.String sql,
int[] columnIndexes)
|
boolean |
execute(java.lang.String sql,
java.lang.String[] columnNames)
|
int[] |
executeBatch()
|
java.sql.ResultSet |
executeQuery()
|
java.sql.ResultSet |
executeQuery(java.lang.String sql)
|
int |
executeUpdate()
|
int |
executeUpdate(java.lang.String sql)
|
int |
executeUpdate(java.lang.String sql,
int autoGeneratedKeys)
|
int |
executeUpdate(java.lang.String sql,
int[] columnIndexes)
|
int |
executeUpdate(java.lang.String sql,
java.lang.String[] columnNames)
|
java.sql.Array |
getArray(int i)
|
java.sql.Array |
getArray(java.lang.String parameterName)
|
java.math.BigDecimal |
getBigDecimal(int parameterIndex)
|
java.math.BigDecimal |
getBigDecimal(int parameterIndex,
int scale)
推奨されていません。 |
java.math.BigDecimal |
getBigDecimal(java.lang.String parameterName)
|
java.sql.Blob |
getBlob(int i)
|
java.sql.Blob |
getBlob(java.lang.String parameterName)
|
boolean |
getBoolean(int parameterIndex)
|
boolean |
getBoolean(java.lang.String parameterName)
|
byte |
getByte(int parameterIndex)
|
byte |
getByte(java.lang.String parameterName)
|
byte[] |
getBytes(int parameterIndex)
|
byte[] |
getBytes(java.lang.String parameterName)
|
java.sql.Clob |
getClob(int i)
|
java.sql.Clob |
getClob(java.lang.String parameterName)
|
java.sql.Connection |
getConnection()
|
java.sql.Date |
getDate(int parameterIndex)
|
java.sql.Date |
getDate(int parameterIndex,
java.util.Calendar cal)
|
java.sql.Date |
getDate(java.lang.String parameterName)
|
java.sql.Date |
getDate(java.lang.String parameterName,
java.util.Calendar cal)
|
double |
getDouble(int parameterIndex)
|
double |
getDouble(java.lang.String parameterName)
|
int |
getFetchDirection()
|
int |
getFetchSize()
|
float |
getFloat(int parameterIndex)
|
float |
getFloat(java.lang.String parameterName)
|
java.sql.ResultSet |
getGeneratedKeys()
|
int |
getInt(int parameterIndex)
|
int |
getInt(java.lang.String parameterName)
|
long |
getLong(int parameterIndex)
|
long |
getLong(java.lang.String parameterName)
|
int |
getMaxFieldSize()
|
int |
getMaxRows()
|
java.sql.ResultSetMetaData |
getMetaData()
|
boolean |
getMoreResults()
|
boolean |
getMoreResults(int current)
|
java.lang.Object |
getObject(int parameterIndex)
|
java.lang.Object |
getObject(int i,
java.util.Map map)
|
java.lang.Object |
getObject(java.lang.String parameterName)
|
java.lang.Object |
getObject(java.lang.String parameterName,
java.util.Map map)
|
java.sql.ParameterMetaData |
getParameterMetaData()
|
int |
getQueryTimeout()
|
java.sql.Ref |
getRef(int i)
|
java.sql.Ref |
getRef(java.lang.String parameterName)
|
java.sql.ResultSet |
getResultSet()
|
int |
getResultSetConcurrency()
|
int |
getResultSetHoldability()
|
int |
getResultSetType()
|
short |
getShort(int parameterIndex)
|
short |
getShort(java.lang.String parameterName)
|
java.lang.String |
getString(int parameterIndex)
|
java.lang.String |
getString(java.lang.String parameterName)
|
java.sql.Time |
getTime(int parameterIndex)
|
java.sql.Time |
getTime(int parameterIndex,
java.util.Calendar cal)
|
java.sql.Time |
getTime(java.lang.String parameterName)
|
java.sql.Time |
getTime(java.lang.String parameterName,
java.util.Calendar cal)
|
java.sql.Timestamp |
getTimestamp(int parameterIndex)
|
java.sql.Timestamp |
getTimestamp(int parameterIndex,
java.util.Calendar cal)
|
java.sql.Timestamp |
getTimestamp(java.lang.String parameterName)
|
java.sql.Timestamp |
getTimestamp(java.lang.String parameterName,
java.util.Calendar cal)
|
int |
getUpdateCount()
|
java.net.URL |
getURL(int parameterIndex)
|
java.net.URL |
getURL(java.lang.String parameterName)
|
java.sql.SQLWarning |
getWarnings()
|
void |
registerOutParameter(int parameterIndex,
int sqlType)
|
void |
registerOutParameter(int parameterIndex,
int sqlType,
int scale)
|
void |
registerOutParameter(int paramIndex,
int sqlType,
java.lang.String typeName)
|
void |
registerOutParameter(java.lang.String parameterName,
int sqlType)
|
void |
registerOutParameter(java.lang.String parameterName,
int sqlType,
int scale)
|
void |
registerOutParameter(java.lang.String parameterName,
int sqlType,
java.lang.String typeName)
|
void |
setArray(int i,
java.sql.Array x)
|
void |
setAsciiStream(int parameterIndex,
java.io.InputStream x,
int length)
|
void |
setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
int length)
|
void |
setBigDecimal(int parameterIndex,
java.math.BigDecimal x)
|
void |
setBigDecimal(java.lang.String parameterName,
java.math.BigDecimal x)
|
void |
setBinaryStream(int parameterIndex,
java.io.InputStream x,
int length)
|
void |
setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
int length)
|
void |
setBlob(int i,
java.sql.Blob x)
|
void |
setBoolean(int parameterIndex,
boolean x)
|
void |
setBoolean(java.lang.String parameterName,
boolean x)
|
void |
setByte(int parameterIndex,
byte x)
|
void |
setByte(java.lang.String parameterName,
byte x)
|
void |
setBytes(int parameterIndex,
byte[] x)
|
void |
setBytes(java.lang.String parameterName,
byte[] x)
|
void |
setCharacterStream(int parameterIndex,
java.io.Reader reader,
int length)
|
void |
setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
int length)
|
void |
setClob(int i,
java.sql.Clob x)
|
void |
setCursorName(java.lang.String name)
|
void |
setDate(int parameterIndex,
java.sql.Date x)
|
void |
setDate(int parameterIndex,
java.sql.Date x,
java.util.Calendar cal)
|
void |
setDate(java.lang.String parameterName,
java.sql.Date x)
|
void |
setDate(java.lang.String parameterName,
java.sql.Date x,
java.util.Calendar cal)
|
void |
setDouble(int parameterIndex,
double x)
|
void |
setDouble(java.lang.String parameterName,
double x)
|
void |
setEscapeProcessing(boolean enable)
|
void |
setFetchDirection(int direction)
|
void |
setFetchSize(int rows)
|
void |
setFloat(int parameterIndex,
float x)
|
void |
setFloat(java.lang.String parameterName,
float x)
|
void |
setInt(int parameterIndex,
int x)
|
void |
setInt(java.lang.String parameterName,
int x)
|
void |
setLong(int parameterIndex,
long x)
|
void |
setLong(java.lang.String parameterName,
long x)
|
void |
setMaxFieldSize(int max)
|
void |
setMaxRows(int max)
|
void |
setNull(int parameterIndex,
int sqlType)
|
void |
setNull(int paramIndex,
int sqlType,
java.lang.String typeName)
|
void |
setNull(java.lang.String parameterName,
int sqlType)
|
void |
setNull(java.lang.String parameterName,
int sqlType,
java.lang.String typeName)
|
void |
setObject(int parameterIndex,
java.lang.Object x)
|
void |
setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType)
|
void |
setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType,
int scale)
|
void |
setObject(java.lang.String parameterName,
java.lang.Object x)
|
void |
setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType)
|
void |
setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType,
int scale)
|
void |
setQueryTimeout(int seconds)
|
void |
setRef(int i,
java.sql.Ref x)
|
void |
setShort(int parameterIndex,
short x)
|
void |
setShort(java.lang.String parameterName,
short x)
|
void |
setString(int parameterIndex,
java.lang.String x)
|
void |
setString(java.lang.String parameterName,
java.lang.String x)
|
void |
setTime(int parameterIndex,
java.sql.Time x)
|
void |
setTime(int parameterIndex,
java.sql.Time x,
java.util.Calendar cal)
|
void |
setTime(java.lang.String parameterName,
java.sql.Time x)
|
void |
setTime(java.lang.String parameterName,
java.sql.Time x,
java.util.Calendar cal)
|
void |
setTimestamp(int parameterIndex,
java.sql.Timestamp x)
|
void |
setTimestamp(int parameterIndex,
java.sql.Timestamp x,
java.util.Calendar cal)
|
void |
setTimestamp(java.lang.String parameterName,
java.sql.Timestamp x)
|
void |
setTimestamp(java.lang.String parameterName,
java.sql.Timestamp x,
java.util.Calendar cal)
|
void |
setUnicodeStream(int parameterIndex,
java.io.InputStream x,
int length)
推奨されていません。 |
void |
setURL(int parameterIndex,
java.net.URL x)
|
void |
setURL(java.lang.String parameterName,
java.net.URL val)
|
boolean |
wasNull()
|
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CallableStatementWrapper
public CallableStatementWrapper(java.sql.CallableStatement original)
CallableStatementWrapper
を作成します。
- パラメータ:
original
- オリジナル
wasNull
public boolean wasNull()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の wasNull
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.wasNull()
getByte
public byte getByte(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getByte
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getByte(int)
getDouble
public double getDouble(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getDouble
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getDouble(int)
getFloat
public float getFloat(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getFloat
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getFloat(int)
getInt
public int getInt(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getInt
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getInt(int)
getLong
public long getLong(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getLong
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getLong(int)
getShort
public short getShort(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getShort
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getShort(int)
getBoolean
public boolean getBoolean(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBoolean
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBoolean(int)
getBytes
public byte[] getBytes(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBytes
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBytes(int)
registerOutParameter
public void registerOutParameter(int parameterIndex,
int sqlType)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の registerOutParameter
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.registerOutParameter(int, int)
registerOutParameter
public void registerOutParameter(int parameterIndex,
int sqlType,
int scale)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の registerOutParameter
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.registerOutParameter(int, int, int)
getObject
public java.lang.Object getObject(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getObject
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getObject(int)
getString
public java.lang.String getString(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getString
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getString(int)
registerOutParameter
public void registerOutParameter(int paramIndex,
int sqlType,
java.lang.String typeName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の registerOutParameter
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.registerOutParameter(int, int,
java.lang.String)
getByte
public byte getByte(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getByte
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getByte(java.lang.String)
getDouble
public double getDouble(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getDouble
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getDouble(java.lang.String)
getFloat
public float getFloat(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getFloat
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getFloat(java.lang.String)
getInt
public int getInt(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getInt
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getInt(java.lang.String)
getLong
public long getLong(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getLong
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getLong(java.lang.String)
getShort
public short getShort(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getShort
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getShort(java.lang.String)
getBoolean
public boolean getBoolean(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBoolean
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBoolean(java.lang.String)
getBytes
public byte[] getBytes(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBytes
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBytes(java.lang.String)
setByte
public void setByte(java.lang.String parameterName,
byte x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setByte
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setByte(java.lang.String, byte)
setDouble
public void setDouble(java.lang.String parameterName,
double x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setDouble
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setDouble(java.lang.String, double)
setFloat
public void setFloat(java.lang.String parameterName,
float x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setFloat
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setFloat(java.lang.String, float)
registerOutParameter
public void registerOutParameter(java.lang.String parameterName,
int sqlType)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の registerOutParameter
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.registerOutParameter(java.lang.String,
int)
setInt
public void setInt(java.lang.String parameterName,
int x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setInt
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setInt(java.lang.String, int)
setNull
public void setNull(java.lang.String parameterName,
int sqlType)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setNull
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setNull(java.lang.String, int)
registerOutParameter
public void registerOutParameter(java.lang.String parameterName,
int sqlType,
int scale)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の registerOutParameter
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.registerOutParameter(java.lang.String,
int, int)
setLong
public void setLong(java.lang.String parameterName,
long x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setLong
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setLong(java.lang.String, long)
setShort
public void setShort(java.lang.String parameterName,
short x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setShort
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setShort(java.lang.String, short)
setBoolean
public void setBoolean(java.lang.String parameterName,
boolean x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setBoolean
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setBoolean(java.lang.String, boolean)
setBytes
public void setBytes(java.lang.String parameterName,
byte[] x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setBytes
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setBytes(java.lang.String, byte[])
getBigDecimal
public java.math.BigDecimal getBigDecimal(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBigDecimal
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBigDecimal(int)
getBigDecimal
public java.math.BigDecimal getBigDecimal(int parameterIndex,
int scale)
throws java.sql.SQLException
- 推奨されていません。
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBigDecimal
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBigDecimal(int, int)
getURL
public java.net.URL getURL(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getURL
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getURL(int)
getArray
public java.sql.Array getArray(int i)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getArray
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getArray(int)
getBlob
public java.sql.Blob getBlob(int i)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBlob
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBlob(int)
getClob
public java.sql.Clob getClob(int i)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getClob
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getClob(int)
getDate
public java.sql.Date getDate(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getDate
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getDate(int)
getRef
public java.sql.Ref getRef(int i)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getRef
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getRef(int)
getTime
public java.sql.Time getTime(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getTime
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getTime(int)
getTimestamp
public java.sql.Timestamp getTimestamp(int parameterIndex)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getTimestamp
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getTimestamp(int)
setAsciiStream
public void setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
int length)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setAsciiStream
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setAsciiStream(java.lang.String,
java.io.InputStream, int)
setBinaryStream
public void setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
int length)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setBinaryStream
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setBinaryStream(java.lang.String,
java.io.InputStream, int)
setCharacterStream
public void setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
int length)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setCharacterStream
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setCharacterStream(java.lang.String,
java.io.Reader, int)
getObject
public java.lang.Object getObject(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getObject
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getObject(java.lang.String)
setObject
public void setObject(java.lang.String parameterName,
java.lang.Object x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setObject
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setObject(java.lang.String,
java.lang.Object)
setObject
public void setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setObject
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setObject(java.lang.String,
java.lang.Object, int)
setObject
public void setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType,
int scale)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setObject
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setObject(java.lang.String,
java.lang.Object, int, int)
getObject
public java.lang.Object getObject(int i,
java.util.Map map)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getObject
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getObject(int, java.util.Map)
getString
public java.lang.String getString(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getString
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getString(java.lang.String)
registerOutParameter
public void registerOutParameter(java.lang.String parameterName,
int sqlType,
java.lang.String typeName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の registerOutParameter
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.registerOutParameter(java.lang.String,
int, java.lang.String)
setNull
public void setNull(java.lang.String parameterName,
int sqlType,
java.lang.String typeName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setNull
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setNull(java.lang.String, int,
java.lang.String)
setString
public void setString(java.lang.String parameterName,
java.lang.String x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setString
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setString(java.lang.String,
java.lang.String)
getBigDecimal
public java.math.BigDecimal getBigDecimal(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBigDecimal
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBigDecimal(java.lang.String)
setBigDecimal
public void setBigDecimal(java.lang.String parameterName,
java.math.BigDecimal x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setBigDecimal
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setBigDecimal(java.lang.String,
java.math.BigDecimal)
getURL
public java.net.URL getURL(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getURL
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getURL(java.lang.String)
setURL
public void setURL(java.lang.String parameterName,
java.net.URL val)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setURL
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setURL(java.lang.String, java.net.URL)
getArray
public java.sql.Array getArray(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getArray
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getArray(java.lang.String)
getBlob
public java.sql.Blob getBlob(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getBlob
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getBlob(java.lang.String)
getClob
public java.sql.Clob getClob(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getClob
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getClob(java.lang.String)
getDate
public java.sql.Date getDate(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getDate
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getDate(java.lang.String)
setDate
public void setDate(java.lang.String parameterName,
java.sql.Date x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setDate
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setDate(java.lang.String, java.sql.Date)
getDate
public java.sql.Date getDate(int parameterIndex,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getDate
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getDate(int, java.util.Calendar)
getRef
public java.sql.Ref getRef(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getRef
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getRef(java.lang.String)
getTime
public java.sql.Time getTime(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getTime
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getTime(java.lang.String)
setTime
public void setTime(java.lang.String parameterName,
java.sql.Time x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setTime
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setTime(java.lang.String, java.sql.Time)
getTime
public java.sql.Time getTime(int parameterIndex,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getTime
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getTime(int, java.util.Calendar)
getTimestamp
public java.sql.Timestamp getTimestamp(java.lang.String parameterName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getTimestamp
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getTimestamp(java.lang.String)
setTimestamp
public void setTimestamp(java.lang.String parameterName,
java.sql.Timestamp x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setTimestamp
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setTimestamp(java.lang.String,
java.sql.Timestamp)
getTimestamp
public java.sql.Timestamp getTimestamp(int parameterIndex,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getTimestamp
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getTimestamp(int, java.util.Calendar)
getObject
public java.lang.Object getObject(java.lang.String parameterName,
java.util.Map map)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getObject
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getObject(java.lang.String,
java.util.Map)
getDate
public java.sql.Date getDate(java.lang.String parameterName,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getDate
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getDate(java.lang.String,
java.util.Calendar)
getTime
public java.sql.Time getTime(java.lang.String parameterName,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getTime
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getTime(java.lang.String,
java.util.Calendar)
getTimestamp
public java.sql.Timestamp getTimestamp(java.lang.String parameterName,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の getTimestamp
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.getTimestamp(java.lang.String,
java.util.Calendar)
setDate
public void setDate(java.lang.String parameterName,
java.sql.Date x,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setDate
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setDate(java.lang.String, java.sql.Date,
java.util.Calendar)
setTime
public void setTime(java.lang.String parameterName,
java.sql.Time x,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setTime
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setTime(java.lang.String, java.sql.Time,
java.util.Calendar)
setTimestamp
public void setTimestamp(java.lang.String parameterName,
java.sql.Timestamp x,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.CallableStatement
内の setTimestamp
- 例外:
java.sql.SQLException
- 関連項目:
CallableStatement.setTimestamp(java.lang.String,
java.sql.Timestamp, java.util.Calendar)
executeUpdate
public int executeUpdate()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の executeUpdate
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.executeUpdate()
addBatch
public void addBatch()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の addBatch
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.addBatch()
clearParameters
public void clearParameters()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の clearParameters
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.clearParameters()
execute
public boolean execute()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の execute
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.execute()
setByte
public void setByte(int parameterIndex,
byte x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setByte
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setByte(int, byte)
setDouble
public void setDouble(int parameterIndex,
double x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setDouble
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setDouble(int, double)
setFloat
public void setFloat(int parameterIndex,
float x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setFloat
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setFloat(int, float)
setInt
public void setInt(int parameterIndex,
int x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setInt
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setInt(int, int)
setNull
public void setNull(int parameterIndex,
int sqlType)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setNull
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setNull(int, int)
setLong
public void setLong(int parameterIndex,
long x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setLong
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setLong(int, long)
setShort
public void setShort(int parameterIndex,
short x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setShort
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setShort(int, short)
setBoolean
public void setBoolean(int parameterIndex,
boolean x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setBoolean
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setBoolean(int, boolean)
setBytes
public void setBytes(int parameterIndex,
byte[] x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setBytes
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setBytes(int, byte[])
setAsciiStream
public void setAsciiStream(int parameterIndex,
java.io.InputStream x,
int length)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setAsciiStream
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setAsciiStream(int, java.io.InputStream,
int)
setBinaryStream
public void setBinaryStream(int parameterIndex,
java.io.InputStream x,
int length)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setBinaryStream
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setBinaryStream(int, java.io.InputStream,
int)
setUnicodeStream
public void setUnicodeStream(int parameterIndex,
java.io.InputStream x,
int length)
throws java.sql.SQLException
- 推奨されていません。
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setUnicodeStream
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setUnicodeStream(int,
java.io.InputStream, int)
setCharacterStream
public void setCharacterStream(int parameterIndex,
java.io.Reader reader,
int length)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setCharacterStream
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setCharacterStream(int, java.io.Reader,
int)
setObject
public void setObject(int parameterIndex,
java.lang.Object x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setObject
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setObject(int, java.lang.Object)
setObject
public void setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setObject
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setObject(int, java.lang.Object, int)
setObject
public void setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType,
int scale)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setObject
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setObject(int, java.lang.Object, int,
int)
setNull
public void setNull(int paramIndex,
int sqlType,
java.lang.String typeName)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setNull
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setNull(int, int, java.lang.String)
setString
public void setString(int parameterIndex,
java.lang.String x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setString
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setString(int, java.lang.String)
setBigDecimal
public void setBigDecimal(int parameterIndex,
java.math.BigDecimal x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setBigDecimal
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setBigDecimal(int, java.math.BigDecimal)
setURL
public void setURL(int parameterIndex,
java.net.URL x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setURL
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setURL(int, java.net.URL)
setArray
public void setArray(int i,
java.sql.Array x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setArray
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setArray(int, java.sql.Array)
setBlob
public void setBlob(int i,
java.sql.Blob x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setBlob
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setBlob(int, java.sql.Blob)
setClob
public void setClob(int i,
java.sql.Clob x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setClob
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setClob(int, java.sql.Clob)
setDate
public void setDate(int parameterIndex,
java.sql.Date x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setDate
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setDate(int, java.sql.Date)
getParameterMetaData
public java.sql.ParameterMetaData getParameterMetaData()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の getParameterMetaData
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.getParameterMetaData()
setRef
public void setRef(int i,
java.sql.Ref x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setRef
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setRef(int, java.sql.Ref)
executeQuery
public java.sql.ResultSet executeQuery()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の executeQuery
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.executeQuery()
getMetaData
public java.sql.ResultSetMetaData getMetaData()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の getMetaData
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.getMetaData()
setTime
public void setTime(int parameterIndex,
java.sql.Time x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setTime
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setTime(int, java.sql.Time)
setTimestamp
public void setTimestamp(int parameterIndex,
java.sql.Timestamp x)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setTimestamp
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setTimestamp(int, java.sql.Timestamp)
setDate
public void setDate(int parameterIndex,
java.sql.Date x,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setDate
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setDate(int, java.sql.Date,
java.util.Calendar)
setTime
public void setTime(int parameterIndex,
java.sql.Time x,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setTime
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setTime(int, java.sql.Time,
java.util.Calendar)
setTimestamp
public void setTimestamp(int parameterIndex,
java.sql.Timestamp x,
java.util.Calendar cal)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.PreparedStatement
内の setTimestamp
- 例外:
java.sql.SQLException
- 関連項目:
PreparedStatement.setTimestamp(int, java.sql.Timestamp,
java.util.Calendar)
getFetchDirection
public int getFetchDirection()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getFetchDirection
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getFetchDirection()
getFetchSize
public int getFetchSize()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getFetchSize
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getFetchSize()
getMaxFieldSize
public int getMaxFieldSize()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getMaxFieldSize
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getMaxFieldSize()
getMaxRows
public int getMaxRows()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getMaxRows
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getMaxRows()
getQueryTimeout
public int getQueryTimeout()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getQueryTimeout
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getQueryTimeout()
getResultSetConcurrency
public int getResultSetConcurrency()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getResultSetConcurrency
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getResultSetConcurrency()
getResultSetHoldability
public int getResultSetHoldability()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getResultSetHoldability
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getResultSetHoldability()
getResultSetType
public int getResultSetType()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getResultSetType
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getResultSetType()
getUpdateCount
public int getUpdateCount()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getUpdateCount
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getUpdateCount()
cancel
public void cancel()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の cancel
- 例外:
java.sql.SQLException
- 関連項目:
Statement.cancel()
clearBatch
public void clearBatch()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の clearBatch
- 例外:
java.sql.SQLException
- 関連項目:
Statement.clearBatch()
clearWarnings
public void clearWarnings()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の clearWarnings
- 例外:
java.sql.SQLException
- 関連項目:
Statement.clearWarnings()
close
public void close()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の close
- 例外:
java.sql.SQLException
- 関連項目:
Statement.close()
getMoreResults
public boolean getMoreResults()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getMoreResults
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getMoreResults()
executeBatch
public int[] executeBatch()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の executeBatch
- 例外:
java.sql.SQLException
- 関連項目:
Statement.executeBatch()
setFetchDirection
public void setFetchDirection(int direction)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の setFetchDirection
- 例外:
java.sql.SQLException
- 関連項目:
Statement.setFetchDirection(int)
setFetchSize
public void setFetchSize(int rows)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の setFetchSize
- 例外:
java.sql.SQLException
- 関連項目:
Statement.setFetchSize(int)
setMaxFieldSize
public void setMaxFieldSize(int max)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の setMaxFieldSize
- 例外:
java.sql.SQLException
- 関連項目:
Statement.setMaxFieldSize(int)
setMaxRows
public void setMaxRows(int max)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の setMaxRows
- 例外:
java.sql.SQLException
- 関連項目:
Statement.setMaxRows(int)
setQueryTimeout
public void setQueryTimeout(int seconds)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の setQueryTimeout
- 例外:
java.sql.SQLException
- 関連項目:
Statement.setQueryTimeout(int)
getMoreResults
public boolean getMoreResults(int current)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getMoreResults
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getMoreResults(int)
setEscapeProcessing
public void setEscapeProcessing(boolean enable)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の setEscapeProcessing
- 例外:
java.sql.SQLException
- 関連項目:
Statement.setEscapeProcessing(boolean)
executeUpdate
public int executeUpdate(java.lang.String sql)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の executeUpdate
- 例外:
java.sql.SQLException
- 関連項目:
Statement.executeUpdate(java.lang.String)
addBatch
public void addBatch(java.lang.String sql)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の addBatch
- 例外:
java.sql.SQLException
- 関連項目:
Statement.addBatch(java.lang.String)
setCursorName
public void setCursorName(java.lang.String name)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の setCursorName
- 例外:
java.sql.SQLException
- 関連項目:
Statement.setCursorName(java.lang.String)
execute
public boolean execute(java.lang.String sql)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の execute
- 例外:
java.sql.SQLException
- 関連項目:
Statement.execute(java.lang.String)
executeUpdate
public int executeUpdate(java.lang.String sql,
int autoGeneratedKeys)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の executeUpdate
- 例外:
java.sql.SQLException
- 関連項目:
Statement.executeUpdate(java.lang.String, int)
execute
public boolean execute(java.lang.String sql,
int autoGeneratedKeys)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の execute
- 例外:
java.sql.SQLException
- 関連項目:
Statement.execute(java.lang.String, int)
executeUpdate
public int executeUpdate(java.lang.String sql,
int[] columnIndexes)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の executeUpdate
- 例外:
java.sql.SQLException
- 関連項目:
Statement.executeUpdate(java.lang.String, int[])
execute
public boolean execute(java.lang.String sql,
int[] columnIndexes)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の execute
- 例外:
java.sql.SQLException
- 関連項目:
Statement.execute(java.lang.String, int[])
getConnection
public java.sql.Connection getConnection()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getConnection
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getConnection()
getGeneratedKeys
public java.sql.ResultSet getGeneratedKeys()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getGeneratedKeys
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getGeneratedKeys()
getResultSet
public java.sql.ResultSet getResultSet()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getResultSet
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getResultSet()
getWarnings
public java.sql.SQLWarning getWarnings()
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の getWarnings
- 例外:
java.sql.SQLException
- 関連項目:
Statement.getWarnings()
executeUpdate
public int executeUpdate(java.lang.String sql,
java.lang.String[] columnNames)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の executeUpdate
- 例外:
java.sql.SQLException
- 関連項目:
Statement.executeUpdate(java.lang.String,
java.lang.String[])
execute
public boolean execute(java.lang.String sql,
java.lang.String[] columnNames)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の execute
- 例外:
java.sql.SQLException
- 関連項目:
Statement.execute(java.lang.String, java.lang.String[])
executeQuery
public java.sql.ResultSet executeQuery(java.lang.String sql)
throws java.sql.SQLException
- 定義:
- インタフェース
java.sql.Statement
内の executeQuery
- 例外:
java.sql.SQLException
- 関連項目:
Statement.executeQuery(java.lang.String)
Copyright © 2004-2014 The Seasar Foundation. All Rights Reserved.