⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 callablestatementproxy.java

📁 JdbcProxy 可以理解为 JDBC 代理
💻 JAVA
📖 第 1 页 / 共 5 页
字号:
  public void addBatch(java.lang.String p0) throws java.sql.SQLException
  {
    invoke(m122, new Object[] {p0});
  }

  /** public abstract java.sql.ResultSet java.sql.Statement.executeQuery(java.lang.String) throws java.sql.SQLException */
  private static final Method m123 = getMethod(java.sql.CallableStatement.class, "executeQuery", new Class[] {java.lang.String.class});
  public java.sql.ResultSet executeQuery(java.lang.String p0) throws java.sql.SQLException
  {
    return (java.sql.ResultSet)invoke(m123, new Object[] {p0});
  }

  /** public abstract int java.sql.Statement.executeUpdate(java.lang.String,java.lang.String[]) throws java.sql.SQLException */
  private static final Method m124 = getMethod(java.sql.CallableStatement.class, "executeUpdate", new Class[] {java.lang.String.class, java.lang.String[].class});
  public int executeUpdate(java.lang.String p0, java.lang.String[] p1) throws java.sql.SQLException
  {
    return ((Integer)invoke(m124, new Object[] {p0, p1})).intValue();
  }

  /** public abstract int java.sql.Statement.executeUpdate(java.lang.String) throws java.sql.SQLException */
  private static final Method m125 = getMethod(java.sql.CallableStatement.class, "executeUpdate", new Class[] {java.lang.String.class});
  public int executeUpdate(java.lang.String p0) throws java.sql.SQLException
  {
    return ((Integer)invoke(m125, new Object[] {p0})).intValue();
  }

  /** public abstract int java.sql.Statement.executeUpdate(java.lang.String,int) throws java.sql.SQLException */
  private static final Method m126 = getMethod(java.sql.CallableStatement.class, "executeUpdate", new Class[] {java.lang.String.class, int.class});
  public int executeUpdate(java.lang.String p0, int p1) throws java.sql.SQLException
  {
    return ((Integer)invoke(m126, new Object[] {p0, new Integer(p1)})).intValue();
  }

  /** public abstract int java.sql.Statement.executeUpdate(java.lang.String,int[]) throws java.sql.SQLException */
  private static final Method m127 = getMethod(java.sql.CallableStatement.class, "executeUpdate", new Class[] {java.lang.String.class, int[].class});
  public int executeUpdate(java.lang.String p0, int[] p1) throws java.sql.SQLException
  {
    return ((Integer)invoke(m127, new Object[] {p0, p1})).intValue();
  }

  /** public abstract void java.sql.Statement.cancel() throws java.sql.SQLException */
  private static final Method m128 = getMethod(java.sql.CallableStatement.class, "cancel", new Class[] {});
  public void cancel() throws java.sql.SQLException
  {
    invoke(m128, new Object[] {});
  }

  /** public abstract void java.sql.Statement.clearBatch() throws java.sql.SQLException */
  private static final Method m129 = getMethod(java.sql.CallableStatement.class, "clearBatch", new Class[] {});
  public void clearBatch() throws java.sql.SQLException
  {
    invoke(m129, new Object[] {});
  }

  /** public abstract void java.sql.Statement.clearWarnings() throws java.sql.SQLException */
  private static final Method m130 = getMethod(java.sql.CallableStatement.class, "clearWarnings", new Class[] {});
  public void clearWarnings() throws java.sql.SQLException
  {
    invoke(m130, new Object[] {});
  }

  /** public abstract int[] java.sql.Statement.executeBatch() throws java.sql.SQLException */
  private static final Method m131 = getMethod(java.sql.CallableStatement.class, "executeBatch", new Class[] {});
  public int[] executeBatch() throws java.sql.SQLException
  {
    return (int[])invoke(m131, new Object[] {});
  }

  /** public abstract java.sql.Connection java.sql.Statement.getConnection() throws java.sql.SQLException */
  private static final Method m132 = getMethod(java.sql.CallableStatement.class, "getConnection", new Class[] {});
  public java.sql.Connection getConnection() throws java.sql.SQLException
  {
    return (java.sql.Connection)invoke(m132, new Object[] {});
  }

  /** public abstract int java.sql.Statement.getFetchDirection() throws java.sql.SQLException */
  private static final Method m133 = getMethod(java.sql.CallableStatement.class, "getFetchDirection", new Class[] {});
  public int getFetchDirection() throws java.sql.SQLException
  {
    return ((Integer)invoke(m133, new Object[] {})).intValue();
  }

  /** public abstract int java.sql.Statement.getFetchSize() throws java.sql.SQLException */
  private static final Method m134 = getMethod(java.sql.CallableStatement.class, "getFetchSize", new Class[] {});
  public int getFetchSize() throws java.sql.SQLException
  {
    return ((Integer)invoke(m134, new Object[] {})).intValue();
  }

  /** public abstract java.sql.ResultSet java.sql.Statement.getGeneratedKeys() throws java.sql.SQLException */
  private static final Method m135 = getMethod(java.sql.CallableStatement.class, "getGeneratedKeys", new Class[] {});
  public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException
  {
    return (java.sql.ResultSet)invoke(m135, new Object[] {});
  }

  /** public abstract int java.sql.Statement.getMaxFieldSize() throws java.sql.SQLException */
  private static final Method m136 = getMethod(java.sql.CallableStatement.class, "getMaxFieldSize", new Class[] {});
  public int getMaxFieldSize() throws java.sql.SQLException
  {
    return ((Integer)invoke(m136, new Object[] {})).intValue();
  }

  /** public abstract int java.sql.Statement.getMaxRows() throws java.sql.SQLException */
  private static final Method m137 = getMethod(java.sql.CallableStatement.class, "getMaxRows", new Class[] {});
  public int getMaxRows() throws java.sql.SQLException
  {
    return ((Integer)invoke(m137, new Object[] {})).intValue();
  }

  /** public abstract boolean java.sql.Statement.getMoreResults(int) throws java.sql.SQLException */
  private static final Method m138 = getMethod(java.sql.CallableStatement.class, "getMoreResults", new Class[] {int.class});
  public boolean getMoreResults(int p0) throws java.sql.SQLException
  {
    return ((Boolean)invoke(m138, new Object[] {new Integer(p0)})).booleanValue();
  }

  /** public abstract boolean java.sql.Statement.getMoreResults() throws java.sql.SQLException */
  private static final Method m139 = getMethod(java.sql.CallableStatement.class, "getMoreResults", new Class[] {});
  public boolean getMoreResults() throws java.sql.SQLException
  {
    return ((Boolean)invoke(m139, new Object[] {})).booleanValue();
  }

  /** public abstract int java.sql.Statement.getQueryTimeout() throws java.sql.SQLException */
  private static final Method m140 = getMethod(java.sql.CallableStatement.class, "getQueryTimeout", new Class[] {});
  public int getQueryTimeout() throws java.sql.SQLException
  {
    return ((Integer)invoke(m140, new Object[] {})).intValue();
  }

  /** public abstract int java.sql.Statement.getResultSetConcurrency() throws java.sql.SQLException */
  private static final Method m141 = getMethod(java.sql.CallableStatement.class, "getResultSetConcurrency", new Class[] {});
  public int getResultSetConcurrency() throws java.sql.SQLException
  {
    return ((Integer)invoke(m141, new Object[] {})).intValue();
  }

  /** public abstract int java.sql.Statement.getResultSetHoldability() throws java.sql.SQLException */
  private static final Method m142 = getMethod(java.sql.CallableStatement.class, "getResultSetHoldability", new Class[] {});
  public int getResultSetHoldability() throws java.sql.SQLException
  {
    return ((Integer)invoke(m142, new Object[] {})).intValue();
  }

  /** public abstract int java.sql.Statement.getResultSetType() throws java.sql.SQLException */
  private static final Method m143 = getMethod(java.sql.CallableStatement.class, "getResultSetType", new Class[] {});
  public int getResultSetType() throws java.sql.SQLException
  {
    return ((Integer)invoke(m143, new Object[] {})).intValue();
  }

  /** public abstract int java.sql.Statement.getUpdateCount() throws java.sql.SQLException */
  private static final Method m144 = getMethod(java.sql.CallableStatement.class, "getUpdateCount", new Class[] {});
  public int getUpdateCount() throws java.sql.SQLException
  {
    return ((Integer)invoke(m144, new Object[] {})).intValue();
  }

  /** public abstract java.sql.SQLWarning java.sql.Statement.getWarnings() throws java.sql.SQLException */
  private static final Method m145 = getMethod(java.sql.CallableStatement.class, "getWarnings", new Class[] {});
  public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
  {
    return (java.sql.SQLWarning)invoke(m145, new Object[] {});
  }

  /** public abstract void java.sql.Statement.setCursorName(java.lang.String) throws java.sql.SQLException */
  private static final Method m146 = getMethod(java.sql.CallableStatement.class, "setCursorName", new Class[] {java.lang.String.class});
  public void setCursorName(java.lang.String p0) throws java.sql.SQLException
  {
    invoke(m146, new Object[] {p0});
  }

  /** public abstract void java.sql.Statement.setEscapeProcessing(boolean) throws java.sql.SQLException */
  private static final Method m147 = getMethod(java.sql.CallableStatement.class, "setEscapeProcessing", new Class[] {boolean.class});
  public void setEscapeProcessing(boolean p0) throws java.sql.SQLException
  {
    invoke(m147, new Object[] {new Boolean(p0)});
  }

  /** public abstract void java.sql.Statement.setFetchDirection(int) throws java.sql.SQLException */
  private static final Method m148 = getMethod(java.sql.CallableStatement.class, "setFetchDirection", new Class[] {int.class});
  public void setFetchDirection(int p0) throws java.sql.SQLException
  {
    invoke(m148, new Object[] {new Integer(p0)});
  }

  /** public abstract void java.sql.Statement.setFetchSize(int) throws java.sql.SQLException */
  private static final Method m149 = getMethod(java.sql.CallableStatement.class, "setFetchSize", new Class[] {int.class});
  public void setFetchSize(int p0) throws java.sql.SQLException
  {
    invoke(m149, new Object[] {new Integer(p0)});
  }

  /** public abstract void java.sql.Statement.setMaxFieldSize(int) throws java.sql.SQLException */
  private static final Method m150 = getMethod(java.sql.CallableStatement.class, "setMaxFieldSize", new Class[] {int.class});
  public void setMaxFieldSize(int p0) throws java.sql.SQLException
  {
    invoke(m150, new Object[] {new Integer(p0)});
  }

  /** public abstract void java.sql.Statement.setMaxRows(int) throws java.sql.SQLException */
  private static final Method m151 = getMethod(java.sql.CallableStatement.class, "setMaxRows", new Class[] {int.class});
  public void setMaxRows(int p0) throws java.sql.SQLException
  {
    invoke(m151, new Object[] {new Integer(p0)});
  }

  /** public abstract void java.sql.Statement.setQueryTimeout(int) throws java.sql.SQLException */
  private static final Method m152 = getMethod(java.sql.CallableStatement.class, "setQueryTimeout", new Class[] {int.class});
  public void setQueryTimeout(int p0) throws java.sql.SQLException
  {
    invoke(m152, new Object[] {new Integer(p0)});
  }
}

⌨️ 快捷键说明

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