callablestatementwrapper.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 2,278 行 · 第 1/4 页

JAVA
2,278
字号
      profiler.finish();    }  }  public void setBigDecimal(String parameterName, BigDecimal x)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setBigDecimal(parameterName, x);    }    finally {      profiler.finish();    }  }  public void setString(String parameterName, String x)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setString(parameterName, x);    }    finally {      profiler.finish();    }  }  public void setBytes(String parameterName, byte[] x)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setBytes(parameterName, x);    }    finally {      profiler.finish();    }  }  public void setDate(String parameterName, Date x)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setDate(parameterName, x);    }    finally {      profiler.finish();    }  }  public void setTime(String parameterName, Time x)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setTime(parameterName, x);    }    finally {      profiler.finish();    }  }  public void setTimestamp(String parameterName, Timestamp x)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setTimestamp(parameterName, x);    }    finally {      profiler.finish();    }  }  public void setAsciiStream(String parameterName, InputStream x, int length)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setAsciiStream(parameterName, x, length);    }    finally {      profiler.finish();    }  }  public void setBinaryStream(String parameterName, InputStream x, int length)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setBinaryStream(parameterName, x, length);    }    finally {      profiler.finish();    }  }  public void setObject(String parameterName,                        Object x,                        int targetSqlType,                        int scale)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setObject(parameterName, x, targetSqlType, scale);    }    finally {      profiler.finish();    }  }  public void setObject(String parameterName, Object x, int targetSqlType)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setObject(parameterName, x, targetSqlType);    }    finally {      profiler.finish();    }  }  public void setObject(String parameterName, Object x)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setObject(parameterName, x);    }    finally {      profiler.finish();    }  }  public void setCharacterStream(String parameterName,                                 Reader reader,                                 int length)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setCharacterStream(parameterName, reader, length);    }    finally {      profiler.finish();    }  }  public void setDate(String parameterName, Date x, Calendar cal)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setDate(parameterName, x, cal);    }    finally {      profiler.finish();    }  }  public void setTime(String parameterName, Time x, Calendar cal)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setTime(parameterName, x, cal);    }    finally {      profiler.finish();    }  }  public void setTimestamp(String parameterName, Timestamp x, Calendar cal)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setTimestamp(parameterName, x, cal);    }    finally {      profiler.finish();    }  }  public void setNull(String parameterName, int sqlType, String typeName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setNull(parameterName, sqlType, typeName);    }    finally {      profiler.finish();    }  }  public String getString(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getString(parameterName);    }    finally {      profiler.finish();    }  }  public boolean getBoolean(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getBoolean(parameterName);    }    finally {      profiler.finish();    }  }  public byte getByte(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getByte(parameterName);    }    finally {      profiler.finish();    }  }  public short getShort(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getShort(parameterName);    }    finally {      profiler.finish();    }  }  public int getInt(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getInt(parameterName);    }    finally {      profiler.finish();    }  }  public long getLong(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getLong(parameterName);    }    finally {      profiler.finish();    }  }  public float getFloat(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getFloat(parameterName);    }    finally {      profiler.finish();    }  }  public double getDouble(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getDouble(parameterName);    }    finally {      profiler.finish();    }  }  public byte[] getBytes(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getBytes(parameterName);    }    finally {      profiler.finish();    }  }  public Date getDate(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getDate(parameterName);    }    finally {      profiler.finish();    }  }  public Time getTime(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getTime(parameterName);    }    finally {      profiler.finish();    }  }  public Timestamp getTimestamp(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getTimestamp(parameterName);    }    finally {      profiler.finish();    }  }  public Object getObject(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getObject(parameterName);    }    finally {      profiler.finish();    }  }  public BigDecimal getBigDecimal(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getBigDecimal(parameterName);    }    finally {      profiler.finish();    }  }  public Object getObject(String parameterName, Map<String, Class<?>> map)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getObject(parameterName, map);    }    finally {      profiler.finish();    }  }  public Ref getRef(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getRef(parameterName);    }    finally {      profiler.finish();    }  }  public Blob getBlob(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getBlob(parameterName);    }    finally {      profiler.finish();    }  }  public Clob getClob(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getClob(parameterName);    }    finally {      profiler.finish();    }  }  public Array getArray(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getArray(parameterName);    }    finally {      profiler.finish();    }  }  public Date getDate(String parameterName, Calendar cal)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getDate(parameterName, cal);    }    finally {      profiler.finish();    }  }  public Time getTime(String parameterName, Calendar cal)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getTime(parameterName, cal);    }    finally {      profiler.finish();    }  }  public Timestamp getTimestamp(String parameterName, Calendar cal)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getTimestamp(parameterName, cal);    }    finally {      profiler.finish();    }  }  public URL getURL(String parameterName)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.getURL(parameterName);    }    finally {      profiler.finish();    }  }  public ResultSet executeQuery()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.executeQuery();    }    finally {      profiler.finish();    }  }  public int executeUpdate()    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      return _callableStatement.executeUpdate();    }    finally {      profiler.finish();    }  }  public void setNull(int parameterIndex, int sqlType)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setNull(parameterIndex, sqlType);    }    finally {      profiler.finish();    }  }  public void setBoolean(int parameterIndex, boolean x)    throws SQLException  {    Profiler profiler = _profilerPoint.start();    try {      _callableStatement.setBoolean(parameterIndex, x);    }    finally {      profiler.finish();    }  }  public void setByte(int parameterIndex, byte x)    throws SQLException

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?