usercallablestatement.java
来自「RESIN 3.2 最新源码」· Java 代码 · 共 1,045 行 · 第 1/2 页
JAVA
1,045 行
/** * Registers the out parameter. */ public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException { _cstmt.registerOutParameter(parameterName, sqlType, scale); } /** * Registers the out parameter. */ public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException { _cstmt.registerOutParameter(parameterName, sqlType, typeName); } /** * Sets the asciiStream */ public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException { _cstmt.setAsciiStream(parameterName, x, length); } /** * Sets the bigDecimal */ public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException { _cstmt.setBigDecimal(parameterName, x); } /** * Sets the binaryStream */ public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException { _cstmt.setBinaryStream(parameterName, x, length); } /** * Sets the boolean */ public void setBoolean(String parameterName, boolean x) throws SQLException { _cstmt.setBoolean(parameterName, x); } /** * Sets the byte */ public void setByte(String parameterName, byte x) throws SQLException { _cstmt.setByte(parameterName, x); } /** * Sets the bytes */ public void setBytes(String parameterName, byte []x) throws SQLException { _cstmt.setBytes(parameterName, x); } /** * Sets the character stream */ public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException { _cstmt.setCharacterStream(parameterName, reader, length); } /** * Sets the date */ public void setDate(String parameterName, Date x) throws SQLException { _cstmt.setDate(parameterName, x); } /** * Sets the date */ public void setDate(String parameterName, Date x, Calendar cal) throws SQLException { _cstmt.setDate(parameterName, x, cal); } /** * Sets the double */ public void setDouble(String parameterName, double x) throws SQLException { _cstmt.setDouble(parameterName, x); } /** * Sets the float */ public void setFloat(String parameterName, float x) throws SQLException { _cstmt.setFloat(parameterName, x); } /** * Sets the int */ public void setInt(String parameterName, int x) throws SQLException { _cstmt.setInt(parameterName, x); } /** * Sets the long */ public void setLong(String parameterName, long x) throws SQLException { _cstmt.setLong(parameterName, x); } /** * Sets the null */ public void setNull(String parameterName, int sqlType) throws SQLException { _cstmt.setNull(parameterName, sqlType); } /** * Sets the null */ public void setNull(String parameterName, int sqlType, String typeName) throws SQLException { _cstmt.setNull(parameterName, sqlType, typeName); } /** * Sets the object */ public void setObject(String parameterName, Object x) throws SQLException { _cstmt.setObject(parameterName, x); } /** * Sets the object */ public void setObject(String parameterName, Object x, int type) throws SQLException { _cstmt.setObject(parameterName, x, type); } /** * Sets the object */ public void setObject(String parameterName, Object x, int type, int scale) throws SQLException { _cstmt.setObject(parameterName, x, type, scale); } /** * Sets the short */ public void setShort(String parameterName, short x) throws SQLException { _cstmt.setShort(parameterName, x); } /** * Sets the string */ public void setString(String parameterName, String x) throws SQLException { _cstmt.setString(parameterName, x); } /** * Sets the time */ public void setTime(String parameterName, Time x) throws SQLException { _cstmt.setTime(parameterName, x); } /** * Sets the time */ public void setTime(String parameterName, Time x, Calendar cal) throws SQLException { _cstmt.setTime(parameterName, x, cal); } /** * Sets the timestamp */ public void setTimestamp(String parameterName, Timestamp x) throws SQLException { _cstmt.setTimestamp(parameterName, x); } /** * Sets the timestamp */ public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException { _cstmt.setTimestamp(parameterName, x, cal); } /** * Sets the URL */ public void setURL(String parameterName, URL x) throws SQLException { _cstmt.setURL(parameterName, x); } /** * Returns true if the last out parameter was null. */ public boolean wasNull() throws SQLException { return _cstmt.wasNull(); } /** * Closes the prepared statement. */ public void close() throws SQLException { synchronized (this) { if (_isClosed) return; _isClosed = true; } super.close(); } public boolean isClosed() throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setPoolable(boolean poolable) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public boolean isPoolable() throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public <T> T unwrap(Class<T> iface) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public boolean isWrapperFor(Class<?> iface) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setRowId(int parameterIndex, RowId x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNString(int parameterIndex, String value) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNClob(int parameterIndex, NClob value) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setClob(int parameterIndex, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setCharacterStream(int parameterIndex, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setClob(int parameterIndex, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNClob(int parameterIndex, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public RowId getRowId(int parameterIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public RowId getRowId(String parameterName) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setRowId(String parameterName, RowId x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNString(String parameterName, String value) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNClob(String parameterName, NClob value) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setClob(String parameterName, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNClob(String parameterName, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public NClob getNClob(int parameterIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public NClob getNClob(String parameterName) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public SQLXML getSQLXML(int parameterIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public SQLXML getSQLXML(String parameterName) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public String getNString(int parameterIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public String getNString(String parameterName) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public Reader getNCharacterStream(int parameterIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public Reader getNCharacterStream(String parameterName) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public Reader getCharacterStream(int parameterIndex) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public Reader getCharacterStream(String parameterName) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBlob(String parameterName, Blob x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setClob(String parameterName, Clob x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setAsciiStream(String parameterName, InputStream x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBinaryStream(String parameterName, InputStream x) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setCharacterStream(String parameterName, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNCharacterStream(String parameterName, Reader value) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setClob(String parameterName, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setBlob(String parameterName, InputStream inputStream) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); } public void setNClob(String parameterName, Reader reader) throws SQLException { throw new UnsupportedOperationException("Not supported yet."); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?