public class SWCallableStatement extends Object implements CallableStatement
SWCallableStatement wrapper the CallableStatement created by client. and it will interceptor the
following methods for trace.
1. execute()
2. execute(String)
3. execute(String, int[])
4. execute(String, String[])
5. execute(String, int)
6. executeQuery()
7. executeQuery(String)
8. executeUpdate()
9. executeUpdate(String)
10. executeUpdate(String, int[])
11. executeUpdate(String, String[])
12. executeUpdate(String, int)
13. addBatch()
14. addBatch(String) ()}| 构造器和说明 |
|---|
SWCallableStatement(Connection realConnection,
CallableStatement realStatement,
ConnectionInfo connectInfo,
String sql) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
addBatch() |
void |
addBatch(String sql) |
void |
cancel() |
void |
clearBatch() |
void |
clearParameters() |
void |
clearWarnings() |
void |
close() |
void |
closeOnCompletion() |
boolean |
execute() |
boolean |
execute(String sql) |
boolean |
execute(String sql,
int autoGeneratedKeys) |
boolean |
execute(String sql,
int[] columnIndexes) |
boolean |
execute(String sql,
String[] columnNames) |
int[] |
executeBatch() |
ResultSet |
executeQuery() |
ResultSet |
executeQuery(String sql) |
int |
executeUpdate() |
int |
executeUpdate(String sql) |
int |
executeUpdate(String sql,
int autoGeneratedKeys) |
int |
executeUpdate(String sql,
int[] columnIndexes) |
int |
executeUpdate(String sql,
String[] columnNames) |
Array |
getArray(int parameterIndex) |
Array |
getArray(String parameterName) |
BigDecimal |
getBigDecimal(int parameterIndex) |
BigDecimal |
getBigDecimal(int parameterIndex,
int scale)
已过时。
|
BigDecimal |
getBigDecimal(String parameterName) |
Blob |
getBlob(int parameterIndex) |
Blob |
getBlob(String parameterName) |
boolean |
getBoolean(int parameterIndex) |
boolean |
getBoolean(String parameterName) |
byte |
getByte(int parameterIndex) |
byte |
getByte(String parameterName) |
byte[] |
getBytes(int parameterIndex) |
byte[] |
getBytes(String parameterName) |
Reader |
getCharacterStream(int parameterIndex) |
Reader |
getCharacterStream(String parameterName) |
Clob |
getClob(int parameterIndex) |
Clob |
getClob(String parameterName) |
Connection |
getConnection() |
Date |
getDate(int parameterIndex) |
Date |
getDate(int parameterIndex,
Calendar cal) |
Date |
getDate(String parameterName) |
Date |
getDate(String parameterName,
Calendar cal) |
double |
getDouble(int parameterIndex) |
double |
getDouble(String parameterName) |
int |
getFetchDirection() |
int |
getFetchSize() |
float |
getFloat(int parameterIndex) |
float |
getFloat(String parameterName) |
ResultSet |
getGeneratedKeys() |
int |
getInt(int parameterIndex) |
int |
getInt(String parameterName) |
long |
getLong(int parameterIndex) |
long |
getLong(String parameterName) |
int |
getMaxFieldSize() |
int |
getMaxRows() |
ResultSetMetaData |
getMetaData() |
boolean |
getMoreResults() |
boolean |
getMoreResults(int current) |
Reader |
getNCharacterStream(int parameterIndex) |
Reader |
getNCharacterStream(String parameterName) |
NClob |
getNClob(int parameterIndex) |
NClob |
getNClob(String parameterName) |
String |
getNString(int parameterIndex) |
String |
getNString(String parameterName) |
Object |
getObject(int parameterIndex) |
<T> T |
getObject(int parameterIndex,
Class<T> type) |
Object |
getObject(int parameterIndex,
Map<String,Class<?>> map) |
Object |
getObject(String parameterName) |
<T> T |
getObject(String parameterName,
Class<T> type) |
Object |
getObject(String parameterName,
Map<String,Class<?>> map) |
ParameterMetaData |
getParameterMetaData() |
int |
getQueryTimeout() |
Ref |
getRef(int parameterIndex) |
Ref |
getRef(String parameterName) |
ResultSet |
getResultSet() |
int |
getResultSetConcurrency() |
int |
getResultSetHoldability() |
int |
getResultSetType() |
RowId |
getRowId(int parameterIndex) |
RowId |
getRowId(String parameterName) |
short |
getShort(int parameterIndex) |
short |
getShort(String parameterName) |
SQLXML |
getSQLXML(int parameterIndex) |
SQLXML |
getSQLXML(String parameterName) |
String |
getString(int parameterIndex) |
String |
getString(String parameterName) |
Time |
getTime(int parameterIndex) |
Time |
getTime(int parameterIndex,
Calendar cal) |
Time |
getTime(String parameterName) |
Time |
getTime(String parameterName,
Calendar cal) |
Timestamp |
getTimestamp(int parameterIndex) |
Timestamp |
getTimestamp(int parameterIndex,
Calendar cal) |
Timestamp |
getTimestamp(String parameterName) |
Timestamp |
getTimestamp(String parameterName,
Calendar cal) |
int |
getUpdateCount() |
URL |
getURL(int parameterIndex) |
URL |
getURL(String parameterName) |
SQLWarning |
getWarnings() |
boolean |
isClosed() |
boolean |
isCloseOnCompletion() |
boolean |
isPoolable() |
boolean |
isWrapperFor(Class<?> iface) |
void |
registerOutParameter(int parameterIndex,
int sqlType) |
void |
registerOutParameter(int parameterIndex,
int sqlType,
int scale) |
void |
registerOutParameter(int parameterIndex,
int sqlType,
String typeName) |
void |
registerOutParameter(String parameterName,
int sqlType) |
void |
registerOutParameter(String parameterName,
int sqlType,
int scale) |
void |
registerOutParameter(String parameterName,
int sqlType,
String typeName) |
void |
setArray(int parameterIndex,
Array x) |
void |
setAsciiStream(int parameterIndex,
InputStream x) |
void |
setAsciiStream(int parameterIndex,
InputStream x,
int length) |
void |
setAsciiStream(int parameterIndex,
InputStream x,
long length) |
void |
setAsciiStream(String parameterName,
InputStream x) |
void |
setAsciiStream(String parameterName,
InputStream x,
int length) |
void |
setAsciiStream(String parameterName,
InputStream x,
long length) |
void |
setBigDecimal(int parameterIndex,
BigDecimal x) |
void |
setBigDecimal(String parameterName,
BigDecimal x) |
void |
setBinaryStream(int parameterIndex,
InputStream x) |
void |
setBinaryStream(int parameterIndex,
InputStream x,
int length) |
void |
setBinaryStream(int parameterIndex,
InputStream x,
long length) |
void |
setBinaryStream(String parameterName,
InputStream x) |
void |
setBinaryStream(String parameterName,
InputStream x,
int length) |
void |
setBinaryStream(String parameterName,
InputStream x,
long length) |
void |
setBlob(int parameterIndex,
Blob x) |
void |
setBlob(int parameterIndex,
InputStream inputStream) |
void |
setBlob(int parameterIndex,
InputStream inputStream,
long length) |
void |
setBlob(String parameterName,
Blob x) |
void |
setBlob(String parameterName,
InputStream inputStream) |
void |
setBlob(String parameterName,
InputStream inputStream,
long length) |
void |
setBoolean(int parameterIndex,
boolean x) |
void |
setBoolean(String parameterName,
boolean x) |
void |
setByte(int parameterIndex,
byte x) |
void |
setByte(String parameterName,
byte x) |
void |
setBytes(int parameterIndex,
byte[] x) |
void |
setBytes(String parameterName,
byte[] x) |
void |
setCharacterStream(int parameterIndex,
Reader reader) |
void |
setCharacterStream(int parameterIndex,
Reader reader,
int length) |
void |
setCharacterStream(int parameterIndex,
Reader reader,
long length) |
void |
setCharacterStream(String parameterName,
Reader reader) |
void |
setCharacterStream(String parameterName,
Reader reader,
int length) |
void |
setCharacterStream(String parameterName,
Reader reader,
long length) |
void |
setClob(int parameterIndex,
Clob x) |
void |
setClob(int parameterIndex,
Reader reader) |
void |
setClob(int parameterIndex,
Reader reader,
long length) |
void |
setClob(String parameterName,
Clob x) |
void |
setClob(String parameterName,
Reader reader) |
void |
setClob(String parameterName,
Reader reader,
long length) |
void |
setCursorName(String name) |
void |
setDate(int parameterIndex,
Date x) |
void |
setDate(int parameterIndex,
Date x,
Calendar cal) |
void |
setDate(String parameterName,
Date x) |
void |
setDate(String parameterName,
Date x,
Calendar cal) |
void |
setDouble(int parameterIndex,
double x) |
void |
setDouble(String parameterName,
double x) |
void |
setEscapeProcessing(boolean enable) |
void |
setFetchDirection(int direction) |
void |
setFetchSize(int rows) |
void |
setFloat(int parameterIndex,
float x) |
void |
setFloat(String parameterName,
float x) |
void |
setInt(int parameterIndex,
int x) |
void |
setInt(String parameterName,
int x) |
void |
setLong(int parameterIndex,
long x) |
void |
setLong(String parameterName,
long x) |
void |
setMaxFieldSize(int max) |
void |
setMaxRows(int max) |
void |
setNCharacterStream(int parameterIndex,
Reader value) |
void |
setNCharacterStream(int parameterIndex,
Reader value,
long length) |
void |
setNCharacterStream(String parameterName,
Reader value) |
void |
setNCharacterStream(String parameterName,
Reader value,
long length) |
void |
setNClob(int parameterIndex,
NClob value) |
void |
setNClob(int parameterIndex,
Reader reader) |
void |
setNClob(int parameterIndex,
Reader reader,
long length) |
void |
setNClob(String parameterName,
NClob value) |
void |
setNClob(String parameterName,
Reader reader) |
void |
setNClob(String parameterName,
Reader reader,
long length) |
void |
setNString(int parameterIndex,
String value) |
void |
setNString(String parameterName,
String value) |
void |
setNull(int parameterIndex,
int sqlType) |
void |
setNull(int parameterIndex,
int sqlType,
String typeName) |
void |
setNull(String parameterName,
int sqlType) |
void |
setNull(String parameterName,
int sqlType,
String typeName) |
void |
setObject(int parameterIndex,
Object x) |
void |
setObject(int parameterIndex,
Object x,
int targetSqlType) |
void |
setObject(int parameterIndex,
Object x,
int targetSqlType,
int scaleOrLength) |
void |
setObject(String parameterName,
Object x) |
void |
setObject(String parameterName,
Object x,
int targetSqlType) |
void |
setObject(String parameterName,
Object x,
int targetSqlType,
int scale) |
void |
setPoolable(boolean poolable) |
void |
setQueryTimeout(int seconds) |
void |
setRef(int parameterIndex,
Ref x) |
void |
setRowId(int parameterIndex,
RowId x) |
void |
setRowId(String parameterName,
RowId x) |
void |
setShort(int parameterIndex,
short x) |
void |
setShort(String parameterName,
short x) |
void |
setSQLXML(int parameterIndex,
SQLXML xmlObject) |
void |
setSQLXML(String parameterName,
SQLXML xmlObject) |
void |
setString(int parameterIndex,
String x) |
void |
setString(String parameterName,
String x) |
void |
setTime(int parameterIndex,
Time x) |
void |
setTime(int parameterIndex,
Time x,
Calendar cal) |
void |
setTime(String parameterName,
Time x) |
void |
setTime(String parameterName,
Time x,
Calendar cal) |
void |
setTimestamp(int parameterIndex,
Timestamp x) |
void |
setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal) |
void |
setTimestamp(String parameterName,
Timestamp x) |
void |
setTimestamp(String parameterName,
Timestamp x,
Calendar cal) |
void |
setUnicodeStream(int parameterIndex,
InputStream x,
int length)
已过时。
|
void |
setURL(int parameterIndex,
URL x) |
void |
setURL(String parameterName,
URL val) |
<T> T |
unwrap(Class<T> iface) |
boolean |
wasNull() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitregisterOutParameter, registerOutParameter, registerOutParameter, registerOutParameter, registerOutParameter, registerOutParameter, setObject, setObjectexecuteLargeUpdate, setObject, setObjectpublic SWCallableStatement(Connection realConnection, CallableStatement realStatement, ConnectionInfo connectInfo, String sql)
public ResultSet executeQuery() throws SQLException
executeQuery 在接口中 PreparedStatementSQLExceptionpublic int executeUpdate()
throws SQLException
executeUpdate 在接口中 PreparedStatementSQLExceptionpublic void setNull(int parameterIndex,
int sqlType)
throws SQLException
setNull 在接口中 PreparedStatementSQLExceptionpublic void setBoolean(int parameterIndex,
boolean x)
throws SQLException
setBoolean 在接口中 PreparedStatementSQLExceptionpublic void setByte(int parameterIndex,
byte x)
throws SQLException
setByte 在接口中 PreparedStatementSQLExceptionpublic void setShort(int parameterIndex,
short x)
throws SQLException
setShort 在接口中 PreparedStatementSQLExceptionpublic void setInt(int parameterIndex,
int x)
throws SQLException
setInt 在接口中 PreparedStatementSQLExceptionpublic void setLong(int parameterIndex,
long x)
throws SQLException
setLong 在接口中 PreparedStatementSQLExceptionpublic void setFloat(int parameterIndex,
float x)
throws SQLException
setFloat 在接口中 PreparedStatementSQLExceptionpublic void setDouble(int parameterIndex,
double x)
throws SQLException
setDouble 在接口中 PreparedStatementSQLExceptionpublic void setBigDecimal(int parameterIndex,
BigDecimal x)
throws SQLException
setBigDecimal 在接口中 PreparedStatementSQLExceptionpublic void setString(int parameterIndex,
String x)
throws SQLException
setString 在接口中 PreparedStatementSQLExceptionpublic void setBytes(int parameterIndex,
byte[] x)
throws SQLException
setBytes 在接口中 PreparedStatementSQLExceptionpublic void setDate(int parameterIndex,
Date x)
throws SQLException
setDate 在接口中 PreparedStatementSQLExceptionpublic void setTime(int parameterIndex,
Time x)
throws SQLException
setTime 在接口中 PreparedStatementSQLExceptionpublic void setTimestamp(int parameterIndex,
Timestamp x)
throws SQLException
setTimestamp 在接口中 PreparedStatementSQLExceptionpublic void setAsciiStream(int parameterIndex,
InputStream x,
int length)
throws SQLException
setAsciiStream 在接口中 PreparedStatementSQLException@Deprecated public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException
setUnicodeStream 在接口中 PreparedStatementSQLExceptionpublic void setBinaryStream(int parameterIndex,
InputStream x,
int length)
throws SQLException
setBinaryStream 在接口中 PreparedStatementSQLExceptionpublic void clearParameters()
throws SQLException
clearParameters 在接口中 PreparedStatementSQLExceptionpublic void setObject(int parameterIndex,
Object x,
int targetSqlType)
throws SQLException
setObject 在接口中 PreparedStatementSQLExceptionpublic void setObject(int parameterIndex,
Object x)
throws SQLException
setObject 在接口中 PreparedStatementSQLExceptionpublic boolean execute()
throws SQLException
execute 在接口中 PreparedStatementSQLExceptionpublic void addBatch()
throws SQLException
addBatch 在接口中 PreparedStatementSQLExceptionpublic void setCharacterStream(int parameterIndex,
Reader reader,
int length)
throws SQLException
setCharacterStream 在接口中 PreparedStatementSQLExceptionpublic void setRef(int parameterIndex,
Ref x)
throws SQLException
setRef 在接口中 PreparedStatementSQLExceptionpublic void setBlob(int parameterIndex,
Blob x)
throws SQLException
setBlob 在接口中 PreparedStatementSQLExceptionpublic void setClob(int parameterIndex,
Clob x)
throws SQLException
setClob 在接口中 PreparedStatementSQLExceptionpublic void setArray(int parameterIndex,
Array x)
throws SQLException
setArray 在接口中 PreparedStatementSQLExceptionpublic ResultSetMetaData getMetaData() throws SQLException
getMetaData 在接口中 PreparedStatementSQLExceptionpublic void setDate(int parameterIndex,
Date x,
Calendar cal)
throws SQLException
setDate 在接口中 PreparedStatementSQLExceptionpublic void setTime(int parameterIndex,
Time x,
Calendar cal)
throws SQLException
setTime 在接口中 PreparedStatementSQLExceptionpublic void setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal)
throws SQLException
setTimestamp 在接口中 PreparedStatementSQLExceptionpublic void setNull(int parameterIndex,
int sqlType,
String typeName)
throws SQLException
setNull 在接口中 PreparedStatementSQLExceptionpublic void setURL(int parameterIndex,
URL x)
throws SQLException
setURL 在接口中 PreparedStatementSQLExceptionpublic ParameterMetaData getParameterMetaData() throws SQLException
getParameterMetaData 在接口中 PreparedStatementSQLExceptionpublic void setRowId(int parameterIndex,
RowId x)
throws SQLException
setRowId 在接口中 PreparedStatementSQLExceptionpublic void setNString(int parameterIndex,
String value)
throws SQLException
setNString 在接口中 PreparedStatementSQLExceptionpublic void setNCharacterStream(int parameterIndex,
Reader value,
long length)
throws SQLException
setNCharacterStream 在接口中 PreparedStatementSQLExceptionpublic void setNClob(int parameterIndex,
NClob value)
throws SQLException
setNClob 在接口中 PreparedStatementSQLExceptionpublic void setClob(int parameterIndex,
Reader reader,
long length)
throws SQLException
setClob 在接口中 PreparedStatementSQLExceptionpublic void setBlob(int parameterIndex,
InputStream inputStream,
long length)
throws SQLException
setBlob 在接口中 PreparedStatementSQLExceptionpublic void setNClob(int parameterIndex,
Reader reader,
long length)
throws SQLException
setNClob 在接口中 PreparedStatementSQLExceptionpublic void setSQLXML(int parameterIndex,
SQLXML xmlObject)
throws SQLException
setSQLXML 在接口中 PreparedStatementSQLExceptionpublic void setObject(int parameterIndex,
Object x,
int targetSqlType,
int scaleOrLength)
throws SQLException
setObject 在接口中 PreparedStatementSQLExceptionpublic void setAsciiStream(int parameterIndex,
InputStream x,
long length)
throws SQLException
setAsciiStream 在接口中 PreparedStatementSQLExceptionpublic void setBinaryStream(int parameterIndex,
InputStream x,
long length)
throws SQLException
setBinaryStream 在接口中 PreparedStatementSQLExceptionpublic void setCharacterStream(int parameterIndex,
Reader reader,
long length)
throws SQLException
setCharacterStream 在接口中 PreparedStatementSQLExceptionpublic void setAsciiStream(int parameterIndex,
InputStream x)
throws SQLException
setAsciiStream 在接口中 PreparedStatementSQLExceptionpublic void setBinaryStream(int parameterIndex,
InputStream x)
throws SQLException
setBinaryStream 在接口中 PreparedStatementSQLExceptionpublic void setCharacterStream(int parameterIndex,
Reader reader)
throws SQLException
setCharacterStream 在接口中 PreparedStatementSQLExceptionpublic void setNCharacterStream(int parameterIndex,
Reader value)
throws SQLException
setNCharacterStream 在接口中 PreparedStatementSQLExceptionpublic void setClob(int parameterIndex,
Reader reader)
throws SQLException
setClob 在接口中 PreparedStatementSQLExceptionpublic void setBlob(int parameterIndex,
InputStream inputStream)
throws SQLException
setBlob 在接口中 PreparedStatementSQLExceptionpublic void setNClob(int parameterIndex,
Reader reader)
throws SQLException
setNClob 在接口中 PreparedStatementSQLExceptionpublic ResultSet executeQuery(String sql) throws SQLException
executeQuery 在接口中 StatementSQLExceptionpublic int executeUpdate(String sql) throws SQLException
executeUpdate 在接口中 StatementSQLExceptionpublic void close()
throws SQLException
close 在接口中 AutoCloseableclose 在接口中 StatementSQLExceptionpublic int getMaxFieldSize()
throws SQLException
getMaxFieldSize 在接口中 StatementSQLExceptionpublic void setMaxFieldSize(int max)
throws SQLException
setMaxFieldSize 在接口中 StatementSQLExceptionpublic int getMaxRows()
throws SQLException
getMaxRows 在接口中 StatementSQLExceptionpublic void setMaxRows(int max)
throws SQLException
setMaxRows 在接口中 StatementSQLExceptionpublic void setEscapeProcessing(boolean enable)
throws SQLException
setEscapeProcessing 在接口中 StatementSQLExceptionpublic int getQueryTimeout()
throws SQLException
getQueryTimeout 在接口中 StatementSQLExceptionpublic void setQueryTimeout(int seconds)
throws SQLException
setQueryTimeout 在接口中 StatementSQLExceptionpublic void cancel()
throws SQLException
cancel 在接口中 StatementSQLExceptionpublic SQLWarning getWarnings() throws SQLException
getWarnings 在接口中 StatementSQLExceptionpublic void clearWarnings()
throws SQLException
clearWarnings 在接口中 StatementSQLExceptionpublic void setCursorName(String name) throws SQLException
setCursorName 在接口中 StatementSQLExceptionpublic boolean execute(String sql) throws SQLException
execute 在接口中 StatementSQLExceptionpublic ResultSet getResultSet() throws SQLException
getResultSet 在接口中 StatementSQLExceptionpublic int getUpdateCount()
throws SQLException
getUpdateCount 在接口中 StatementSQLExceptionpublic boolean getMoreResults()
throws SQLException
getMoreResults 在接口中 StatementSQLExceptionpublic void setFetchDirection(int direction)
throws SQLException
setFetchDirection 在接口中 StatementSQLExceptionpublic int getFetchDirection()
throws SQLException
getFetchDirection 在接口中 StatementSQLExceptionpublic void setFetchSize(int rows)
throws SQLException
setFetchSize 在接口中 StatementSQLExceptionpublic int getFetchSize()
throws SQLException
getFetchSize 在接口中 StatementSQLExceptionpublic int getResultSetConcurrency()
throws SQLException
getResultSetConcurrency 在接口中 StatementSQLExceptionpublic int getResultSetType()
throws SQLException
getResultSetType 在接口中 StatementSQLExceptionpublic void addBatch(String sql) throws SQLException
addBatch 在接口中 StatementSQLExceptionpublic void clearBatch()
throws SQLException
clearBatch 在接口中 StatementSQLExceptionpublic int[] executeBatch()
throws SQLException
executeBatch 在接口中 StatementSQLExceptionpublic Connection getConnection() throws SQLException
getConnection 在接口中 StatementSQLExceptionpublic boolean getMoreResults(int current)
throws SQLException
getMoreResults 在接口中 StatementSQLExceptionpublic ResultSet getGeneratedKeys() throws SQLException
getGeneratedKeys 在接口中 StatementSQLExceptionpublic int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException
executeUpdate 在接口中 StatementSQLExceptionpublic int executeUpdate(String sql, int[] columnIndexes) throws SQLException
executeUpdate 在接口中 StatementSQLExceptionpublic int executeUpdate(String sql, String[] columnNames) throws SQLException
executeUpdate 在接口中 StatementSQLExceptionpublic boolean execute(String sql, int autoGeneratedKeys) throws SQLException
execute 在接口中 StatementSQLExceptionpublic boolean execute(String sql, int[] columnIndexes) throws SQLException
execute 在接口中 StatementSQLExceptionpublic boolean execute(String sql, String[] columnNames) throws SQLException
execute 在接口中 StatementSQLExceptionpublic int getResultSetHoldability()
throws SQLException
getResultSetHoldability 在接口中 StatementSQLExceptionpublic boolean isClosed()
throws SQLException
isClosed 在接口中 StatementSQLExceptionpublic void setPoolable(boolean poolable)
throws SQLException
setPoolable 在接口中 StatementSQLExceptionpublic boolean isPoolable()
throws SQLException
isPoolable 在接口中 StatementSQLExceptionpublic void closeOnCompletion()
throws SQLException
closeOnCompletion 在接口中 StatementSQLExceptionpublic boolean isCloseOnCompletion()
throws SQLException
isCloseOnCompletion 在接口中 StatementSQLExceptionpublic <T> T unwrap(Class<T> iface) throws SQLException
unwrap 在接口中 WrapperSQLExceptionpublic boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor 在接口中 WrapperSQLExceptionpublic void registerOutParameter(int parameterIndex,
int sqlType)
throws SQLException
registerOutParameter 在接口中 CallableStatementSQLExceptionpublic void registerOutParameter(int parameterIndex,
int sqlType,
int scale)
throws SQLException
registerOutParameter 在接口中 CallableStatementSQLExceptionpublic boolean wasNull()
throws SQLException
wasNull 在接口中 CallableStatementSQLExceptionpublic String getString(int parameterIndex) throws SQLException
getString 在接口中 CallableStatementSQLExceptionpublic boolean getBoolean(int parameterIndex)
throws SQLException
getBoolean 在接口中 CallableStatementSQLExceptionpublic byte getByte(int parameterIndex)
throws SQLException
getByte 在接口中 CallableStatementSQLExceptionpublic short getShort(int parameterIndex)
throws SQLException
getShort 在接口中 CallableStatementSQLExceptionpublic int getInt(int parameterIndex)
throws SQLException
getInt 在接口中 CallableStatementSQLExceptionpublic long getLong(int parameterIndex)
throws SQLException
getLong 在接口中 CallableStatementSQLExceptionpublic float getFloat(int parameterIndex)
throws SQLException
getFloat 在接口中 CallableStatementSQLExceptionpublic double getDouble(int parameterIndex)
throws SQLException
getDouble 在接口中 CallableStatementSQLException@Deprecated public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException
getBigDecimal 在接口中 CallableStatementSQLExceptionpublic byte[] getBytes(int parameterIndex)
throws SQLException
getBytes 在接口中 CallableStatementSQLExceptionpublic Date getDate(int parameterIndex) throws SQLException
getDate 在接口中 CallableStatementSQLExceptionpublic Time getTime(int parameterIndex) throws SQLException
getTime 在接口中 CallableStatementSQLExceptionpublic Timestamp getTimestamp(int parameterIndex) throws SQLException
getTimestamp 在接口中 CallableStatementSQLExceptionpublic Object getObject(int parameterIndex) throws SQLException
getObject 在接口中 CallableStatementSQLExceptionpublic BigDecimal getBigDecimal(int parameterIndex) throws SQLException
getBigDecimal 在接口中 CallableStatementSQLExceptionpublic Object getObject(int parameterIndex, Map<String,Class<?>> map) throws SQLException
getObject 在接口中 CallableStatementSQLExceptionpublic Ref getRef(int parameterIndex) throws SQLException
getRef 在接口中 CallableStatementSQLExceptionpublic Blob getBlob(int parameterIndex) throws SQLException
getBlob 在接口中 CallableStatementSQLExceptionpublic Clob getClob(int parameterIndex) throws SQLException
getClob 在接口中 CallableStatementSQLExceptionpublic Array getArray(int parameterIndex) throws SQLException
getArray 在接口中 CallableStatementSQLExceptionpublic Date getDate(int parameterIndex, Calendar cal) throws SQLException
getDate 在接口中 CallableStatementSQLExceptionpublic Time getTime(int parameterIndex, Calendar cal) throws SQLException
getTime 在接口中 CallableStatementSQLExceptionpublic Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException
getTimestamp 在接口中 CallableStatementSQLExceptionpublic void registerOutParameter(int parameterIndex,
int sqlType,
String typeName)
throws SQLException
registerOutParameter 在接口中 CallableStatementSQLExceptionpublic void registerOutParameter(String parameterName, int sqlType) throws SQLException
registerOutParameter 在接口中 CallableStatementSQLExceptionpublic void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException
registerOutParameter 在接口中 CallableStatementSQLExceptionpublic void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException
registerOutParameter 在接口中 CallableStatementSQLExceptionpublic URL getURL(int parameterIndex) throws SQLException
getURL 在接口中 CallableStatementSQLExceptionpublic void setURL(String parameterName, URL val) throws SQLException
setURL 在接口中 CallableStatementSQLExceptionpublic void setNull(String parameterName, int sqlType) throws SQLException
setNull 在接口中 CallableStatementSQLExceptionpublic void setBoolean(String parameterName, boolean x) throws SQLException
setBoolean 在接口中 CallableStatementSQLExceptionpublic void setByte(String parameterName, byte x) throws SQLException
setByte 在接口中 CallableStatementSQLExceptionpublic void setShort(String parameterName, short x) throws SQLException
setShort 在接口中 CallableStatementSQLExceptionpublic void setInt(String parameterName, int x) throws SQLException
setInt 在接口中 CallableStatementSQLExceptionpublic void setLong(String parameterName, long x) throws SQLException
setLong 在接口中 CallableStatementSQLExceptionpublic void setFloat(String parameterName, float x) throws SQLException
setFloat 在接口中 CallableStatementSQLExceptionpublic void setDouble(String parameterName, double x) throws SQLException
setDouble 在接口中 CallableStatementSQLExceptionpublic void setBigDecimal(String parameterName, BigDecimal x) throws SQLException
setBigDecimal 在接口中 CallableStatementSQLExceptionpublic void setString(String parameterName, String x) throws SQLException
setString 在接口中 CallableStatementSQLExceptionpublic void setBytes(String parameterName, byte[] x) throws SQLException
setBytes 在接口中 CallableStatementSQLExceptionpublic void setDate(String parameterName, Date x) throws SQLException
setDate 在接口中 CallableStatementSQLExceptionpublic void setTime(String parameterName, Time x) throws SQLException
setTime 在接口中 CallableStatementSQLExceptionpublic void setTimestamp(String parameterName, Timestamp x) throws SQLException
setTimestamp 在接口中 CallableStatementSQLExceptionpublic void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException
setAsciiStream 在接口中 CallableStatementSQLExceptionpublic void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException
setBinaryStream 在接口中 CallableStatementSQLExceptionpublic void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException
setObject 在接口中 CallableStatementSQLExceptionpublic void setObject(String parameterName, Object x, int targetSqlType) throws SQLException
setObject 在接口中 CallableStatementSQLExceptionpublic void setObject(String parameterName, Object x) throws SQLException
setObject 在接口中 CallableStatementSQLExceptionpublic void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException
setCharacterStream 在接口中 CallableStatementSQLExceptionpublic void setDate(String parameterName, Date x, Calendar cal) throws SQLException
setDate 在接口中 CallableStatementSQLExceptionpublic void setTime(String parameterName, Time x, Calendar cal) throws SQLException
setTime 在接口中 CallableStatementSQLExceptionpublic void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException
setTimestamp 在接口中 CallableStatementSQLExceptionpublic void setNull(String parameterName, int sqlType, String typeName) throws SQLException
setNull 在接口中 CallableStatementSQLExceptionpublic String getString(String parameterName) throws SQLException
getString 在接口中 CallableStatementSQLExceptionpublic boolean getBoolean(String parameterName) throws SQLException
getBoolean 在接口中 CallableStatementSQLExceptionpublic byte getByte(String parameterName) throws SQLException
getByte 在接口中 CallableStatementSQLExceptionpublic short getShort(String parameterName) throws SQLException
getShort 在接口中 CallableStatementSQLExceptionpublic int getInt(String parameterName) throws SQLException
getInt 在接口中 CallableStatementSQLExceptionpublic long getLong(String parameterName) throws SQLException
getLong 在接口中 CallableStatementSQLExceptionpublic float getFloat(String parameterName) throws SQLException
getFloat 在接口中 CallableStatementSQLExceptionpublic double getDouble(String parameterName) throws SQLException
getDouble 在接口中 CallableStatementSQLExceptionpublic byte[] getBytes(String parameterName) throws SQLException
getBytes 在接口中 CallableStatementSQLExceptionpublic Date getDate(String parameterName) throws SQLException
getDate 在接口中 CallableStatementSQLExceptionpublic Time getTime(String parameterName) throws SQLException
getTime 在接口中 CallableStatementSQLExceptionpublic Timestamp getTimestamp(String parameterName) throws SQLException
getTimestamp 在接口中 CallableStatementSQLExceptionpublic Object getObject(String parameterName) throws SQLException
getObject 在接口中 CallableStatementSQLExceptionpublic BigDecimal getBigDecimal(String parameterName) throws SQLException
getBigDecimal 在接口中 CallableStatementSQLExceptionpublic Object getObject(String parameterName, Map<String,Class<?>> map) throws SQLException
getObject 在接口中 CallableStatementSQLExceptionpublic Ref getRef(String parameterName) throws SQLException
getRef 在接口中 CallableStatementSQLExceptionpublic Blob getBlob(String parameterName) throws SQLException
getBlob 在接口中 CallableStatementSQLExceptionpublic Clob getClob(String parameterName) throws SQLException
getClob 在接口中 CallableStatementSQLExceptionpublic Array getArray(String parameterName) throws SQLException
getArray 在接口中 CallableStatementSQLExceptionpublic Date getDate(String parameterName, Calendar cal) throws SQLException
getDate 在接口中 CallableStatementSQLExceptionpublic Time getTime(String parameterName, Calendar cal) throws SQLException
getTime 在接口中 CallableStatementSQLExceptionpublic Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException
getTimestamp 在接口中 CallableStatementSQLExceptionpublic URL getURL(String parameterName) throws SQLException
getURL 在接口中 CallableStatementSQLExceptionpublic RowId getRowId(int parameterIndex) throws SQLException
getRowId 在接口中 CallableStatementSQLExceptionpublic RowId getRowId(String parameterName) throws SQLException
getRowId 在接口中 CallableStatementSQLExceptionpublic void setRowId(String parameterName, RowId x) throws SQLException
setRowId 在接口中 CallableStatementSQLExceptionpublic void setNString(String parameterName, String value) throws SQLException
setNString 在接口中 CallableStatementSQLExceptionpublic void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException
setNCharacterStream 在接口中 CallableStatementSQLExceptionpublic void setNClob(String parameterName, NClob value) throws SQLException
setNClob 在接口中 CallableStatementSQLExceptionpublic void setClob(String parameterName, Reader reader, long length) throws SQLException
setClob 在接口中 CallableStatementSQLExceptionpublic void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException
setBlob 在接口中 CallableStatementSQLExceptionpublic void setNClob(String parameterName, Reader reader, long length) throws SQLException
setNClob 在接口中 CallableStatementSQLExceptionpublic NClob getNClob(int parameterIndex) throws SQLException
getNClob 在接口中 CallableStatementSQLExceptionpublic NClob getNClob(String parameterName) throws SQLException
getNClob 在接口中 CallableStatementSQLExceptionpublic void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException
setSQLXML 在接口中 CallableStatementSQLExceptionpublic SQLXML getSQLXML(int parameterIndex) throws SQLException
getSQLXML 在接口中 CallableStatementSQLExceptionpublic SQLXML getSQLXML(String parameterName) throws SQLException
getSQLXML 在接口中 CallableStatementSQLExceptionpublic String getNString(int parameterIndex) throws SQLException
getNString 在接口中 CallableStatementSQLExceptionpublic String getNString(String parameterName) throws SQLException
getNString 在接口中 CallableStatementSQLExceptionpublic Reader getNCharacterStream(int parameterIndex) throws SQLException
getNCharacterStream 在接口中 CallableStatementSQLExceptionpublic Reader getNCharacterStream(String parameterName) throws SQLException
getNCharacterStream 在接口中 CallableStatementSQLExceptionpublic Reader getCharacterStream(int parameterIndex) throws SQLException
getCharacterStream 在接口中 CallableStatementSQLExceptionpublic Reader getCharacterStream(String parameterName) throws SQLException
getCharacterStream 在接口中 CallableStatementSQLExceptionpublic void setBlob(String parameterName, Blob x) throws SQLException
setBlob 在接口中 CallableStatementSQLExceptionpublic void setClob(String parameterName, Clob x) throws SQLException
setClob 在接口中 CallableStatementSQLExceptionpublic void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException
setAsciiStream 在接口中 CallableStatementSQLExceptionpublic void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException
setBinaryStream 在接口中 CallableStatementSQLExceptionpublic void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException
setCharacterStream 在接口中 CallableStatementSQLExceptionpublic void setAsciiStream(String parameterName, InputStream x) throws SQLException
setAsciiStream 在接口中 CallableStatementSQLExceptionpublic void setBinaryStream(String parameterName, InputStream x) throws SQLException
setBinaryStream 在接口中 CallableStatementSQLExceptionpublic void setCharacterStream(String parameterName, Reader reader) throws SQLException
setCharacterStream 在接口中 CallableStatementSQLExceptionpublic void setNCharacterStream(String parameterName, Reader value) throws SQLException
setNCharacterStream 在接口中 CallableStatementSQLExceptionpublic void setClob(String parameterName, Reader reader) throws SQLException
setClob 在接口中 CallableStatementSQLExceptionpublic void setBlob(String parameterName, InputStream inputStream) throws SQLException
setBlob 在接口中 CallableStatementSQLExceptionpublic void setNClob(String parameterName, Reader reader) throws SQLException
setNClob 在接口中 CallableStatementSQLExceptionpublic <T> T getObject(int parameterIndex,
Class<T> type)
throws SQLException
getObject 在接口中 CallableStatementSQLExceptionpublic <T> T getObject(String parameterName, Class<T> type) throws SQLException
getObject 在接口中 CallableStatementSQLExceptionCopyright © 2018 The Apache Software Foundation. All rights reserved.