📄 preparedstatementproxy.java
字号:
{
invoke(m35, new Object[] {new Integer(p0), p1});
}
/** public abstract void java.sql.PreparedStatement.setUnicodeStream(int,java.io.InputStream,int) throws java.sql.SQLException */
private static final Method m36 = getMethod(java.sql.PreparedStatement.class, "setUnicodeStream", new Class[] {int.class, java.io.InputStream.class, int.class});
public void setUnicodeStream(int p0, java.io.InputStream p1, int p2) throws java.sql.SQLException
{
invoke(m36, new Object[] {new Integer(p0), p1, new Integer(p2)});
}
/** public abstract void java.sql.Statement.close() throws java.sql.SQLException */
private static final Method m37 = getMethod(java.sql.PreparedStatement.class, "close", new Class[] {});
public void close() throws java.sql.SQLException
{
invoke(m37, new Object[] {});
}
/** public abstract boolean java.sql.Statement.execute(java.lang.String,java.lang.String[]) throws java.sql.SQLException */
private static final Method m38 = getMethod(java.sql.PreparedStatement.class, "execute", new Class[] {java.lang.String.class, java.lang.String[].class});
public boolean execute(java.lang.String p0, java.lang.String[] p1) throws java.sql.SQLException
{
return ((Boolean)invoke(m38, new Object[] {p0, p1})).booleanValue();
}
/** public abstract boolean java.sql.Statement.execute(java.lang.String,int) throws java.sql.SQLException */
private static final Method m39 = getMethod(java.sql.PreparedStatement.class, "execute", new Class[] {java.lang.String.class, int.class});
public boolean execute(java.lang.String p0, int p1) throws java.sql.SQLException
{
return ((Boolean)invoke(m39, new Object[] {p0, new Integer(p1)})).booleanValue();
}
/** public abstract boolean java.sql.Statement.execute(java.lang.String) throws java.sql.SQLException */
private static final Method m40 = getMethod(java.sql.PreparedStatement.class, "execute", new Class[] {java.lang.String.class});
public boolean execute(java.lang.String p0) throws java.sql.SQLException
{
return ((Boolean)invoke(m40, new Object[] {p0})).booleanValue();
}
/** public abstract boolean java.sql.Statement.execute(java.lang.String,int[]) throws java.sql.SQLException */
private static final Method m41 = getMethod(java.sql.PreparedStatement.class, "execute", new Class[] {java.lang.String.class, int[].class});
public boolean execute(java.lang.String p0, int[] p1) throws java.sql.SQLException
{
return ((Boolean)invoke(m41, new Object[] {p0, p1})).booleanValue();
}
/** public abstract java.sql.ResultSet java.sql.Statement.getResultSet() throws java.sql.SQLException */
private static final Method m42 = getMethod(java.sql.PreparedStatement.class, "getResultSet", new Class[] {});
public java.sql.ResultSet getResultSet() throws java.sql.SQLException
{
return (java.sql.ResultSet)invoke(m42, new Object[] {});
}
/** public abstract void java.sql.Statement.addBatch(java.lang.String) throws java.sql.SQLException */
private static final Method m43 = getMethod(java.sql.PreparedStatement.class, "addBatch", new Class[] {java.lang.String.class});
public void addBatch(java.lang.String p0) throws java.sql.SQLException
{
invoke(m43, new Object[] {p0});
}
/** public abstract java.sql.ResultSet java.sql.Statement.executeQuery(java.lang.String) throws java.sql.SQLException */
private static final Method m44 = getMethod(java.sql.PreparedStatement.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(m44, new Object[] {p0});
}
/** public abstract int java.sql.Statement.executeUpdate(java.lang.String,java.lang.String[]) throws java.sql.SQLException */
private static final Method m45 = getMethod(java.sql.PreparedStatement.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(m45, new Object[] {p0, p1})).intValue();
}
/** public abstract int java.sql.Statement.executeUpdate(java.lang.String) throws java.sql.SQLException */
private static final Method m46 = getMethod(java.sql.PreparedStatement.class, "executeUpdate", new Class[] {java.lang.String.class});
public int executeUpdate(java.lang.String p0) throws java.sql.SQLException
{
return ((Integer)invoke(m46, new Object[] {p0})).intValue();
}
/** public abstract int java.sql.Statement.executeUpdate(java.lang.String,int) throws java.sql.SQLException */
private static final Method m47 = getMethod(java.sql.PreparedStatement.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(m47, 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 m48 = getMethod(java.sql.PreparedStatement.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(m48, new Object[] {p0, p1})).intValue();
}
/** public abstract void java.sql.Statement.cancel() throws java.sql.SQLException */
private static final Method m49 = getMethod(java.sql.PreparedStatement.class, "cancel", new Class[] {});
public void cancel() throws java.sql.SQLException
{
invoke(m49, new Object[] {});
}
/** public abstract void java.sql.Statement.clearBatch() throws java.sql.SQLException */
private static final Method m50 = getMethod(java.sql.PreparedStatement.class, "clearBatch", new Class[] {});
public void clearBatch() throws java.sql.SQLException
{
invoke(m50, new Object[] {});
}
/** public abstract void java.sql.Statement.clearWarnings() throws java.sql.SQLException */
private static final Method m51 = getMethod(java.sql.PreparedStatement.class, "clearWarnings", new Class[] {});
public void clearWarnings() throws java.sql.SQLException
{
invoke(m51, new Object[] {});
}
/** public abstract int[] java.sql.Statement.executeBatch() throws java.sql.SQLException */
private static final Method m52 = getMethod(java.sql.PreparedStatement.class, "executeBatch", new Class[] {});
public int[] executeBatch() throws java.sql.SQLException
{
return (int[])invoke(m52, new Object[] {});
}
/** public abstract java.sql.Connection java.sql.Statement.getConnection() throws java.sql.SQLException */
private static final Method m53 = getMethod(java.sql.PreparedStatement.class, "getConnection", new Class[] {});
public java.sql.Connection getConnection() throws java.sql.SQLException
{
return (java.sql.Connection)invoke(m53, new Object[] {});
}
/** public abstract int java.sql.Statement.getFetchDirection() throws java.sql.SQLException */
private static final Method m54 = getMethod(java.sql.PreparedStatement.class, "getFetchDirection", new Class[] {});
public int getFetchDirection() throws java.sql.SQLException
{
return ((Integer)invoke(m54, new Object[] {})).intValue();
}
/** public abstract int java.sql.Statement.getFetchSize() throws java.sql.SQLException */
private static final Method m55 = getMethod(java.sql.PreparedStatement.class, "getFetchSize", new Class[] {});
public int getFetchSize() throws java.sql.SQLException
{
return ((Integer)invoke(m55, new Object[] {})).intValue();
}
/** public abstract java.sql.ResultSet java.sql.Statement.getGeneratedKeys() throws java.sql.SQLException */
private static final Method m56 = getMethod(java.sql.PreparedStatement.class, "getGeneratedKeys", new Class[] {});
public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException
{
return (java.sql.ResultSet)invoke(m56, new Object[] {});
}
/** public abstract int java.sql.Statement.getMaxFieldSize() throws java.sql.SQLException */
private static final Method m57 = getMethod(java.sql.PreparedStatement.class, "getMaxFieldSize", new Class[] {});
public int getMaxFieldSize() throws java.sql.SQLException
{
return ((Integer)invoke(m57, new Object[] {})).intValue();
}
/** public abstract int java.sql.Statement.getMaxRows() throws java.sql.SQLException */
private static final Method m58 = getMethod(java.sql.PreparedStatement.class, "getMaxRows", new Class[] {});
public int getMaxRows() throws java.sql.SQLException
{
return ((Integer)invoke(m58, new Object[] {})).intValue();
}
/** public abstract boolean java.sql.Statement.getMoreResults(int) throws java.sql.SQLException */
private static final Method m59 = getMethod(java.sql.PreparedStatement.class, "getMoreResults", new Class[] {int.class});
public boolean getMoreResults(int p0) throws java.sql.SQLException
{
return ((Boolean)invoke(m59, new Object[] {new Integer(p0)})).booleanValue();
}
/** public abstract boolean java.sql.Statement.getMoreResults() throws java.sql.SQLException */
private static final Method m60 = getMethod(java.sql.PreparedStatement.class, "getMoreResults", new Class[] {});
public boolean getMoreResults() throws java.sql.SQLException
{
return ((Boolean)invoke(m60, new Object[] {})).booleanValue();
}
/** public abstract int java.sql.Statement.getQueryTimeout() throws java.sql.SQLException */
private static final Method m61 = getMethod(java.sql.PreparedStatement.class, "getQueryTimeout", new Class[] {});
public int getQueryTimeout() throws java.sql.SQLException
{
return ((Integer)invoke(m61, new Object[] {})).intValue();
}
/** public abstract int java.sql.Statement.getResultSetConcurrency() throws java.sql.SQLException */
private static final Method m62 = getMethod(java.sql.PreparedStatement.class, "getResultSetConcurrency", new Class[] {});
public int getResultSetConcurrency() throws java.sql.SQLException
{
return ((Integer)invoke(m62, new Object[] {})).intValue();
}
/** public abstract int java.sql.Statement.getResultSetHoldability() throws java.sql.SQLException */
private static final Method m63 = getMethod(java.sql.PreparedStatement.class, "getResultSetHoldability", new Class[] {});
public int getResultSetHoldability() throws java.sql.SQLException
{
return ((Integer)invoke(m63, new Object[] {})).intValue();
}
/** public abstract int java.sql.Statement.getResultSetType() throws java.sql.SQLException */
private static final Method m64 = getMethod(java.sql.PreparedStatement.class, "getResultSetType", new Class[] {});
public int getResultSetType() throws java.sql.SQLException
{
return ((Integer)invoke(m64, new Object[] {})).intValue();
}
/** public abstract int java.sql.Statement.getUpdateCount() throws java.sql.SQLException */
private static final Method m65 = getMethod(java.sql.PreparedStatement.class, "getUpdateCount", new Class[] {});
public int getUpdateCount() throws java.sql.SQLException
{
return ((Integer)invoke(m65, new Object[] {})).intValue();
}
/** public abstract java.sql.SQLWarning java.sql.Statement.getWarnings() throws java.sql.SQLException */
private static final Method m66 = getMethod(java.sql.PreparedStatement.class, "getWarnings", new Class[] {});
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
{
return (java.sql.SQLWarning)invoke(m66, new Object[] {});
}
/** public abstract void java.sql.Statement.setCursorName(java.lang.String) throws java.sql.SQLException */
private static final Method m67 = getMethod(java.sql.PreparedStatement.class, "setCursorName", new Class[] {java.lang.String.class});
public void setCursorName(java.lang.String p0) throws java.sql.SQLException
{
invoke(m67, new Object[] {p0});
}
/** public abstract void java.sql.Statement.setEscapeProcessing(boolean) throws java.sql.SQLException */
private static final Method m68 = getMethod(java.sql.PreparedStatement.class, "setEscapeProcessing", new Class[] {boolean.class});
public void setEscapeProcessing(boolean p0) throws java.sql.SQLException
{
invoke(m68, new Object[] {new Boolean(p0)});
}
/** public abstract void java.sql.Statement.setFetchDirection(int) throws java.sql.SQLException */
private static final Method m69 = getMethod(java.sql.PreparedStatement.class, "setFetchDirection", new Class[] {int.class});
public void setFetchDirection(int p0) throws java.sql.SQLException
{
invoke(m69, new Object[] {new Integer(p0)});
}
/** public abstract void java.sql.Statement.setFetchSize(int) throws java.sql.SQLException */
private static final Method m70 = getMethod(java.sql.PreparedStatement.class, "setFetchSize", new Class[] {int.class});
public void setFetchSize(int p0) throws java.sql.SQLException
{
invoke(m70, new Object[] {new Integer(p0)});
}
/** public abstract void java.sql.Statement.setMaxFieldSize(int) throws java.sql.SQLException */
private static final Method m71 = getMethod(java.sql.PreparedStatement.class, "setMaxFieldSize", new Class[] {int.class});
public void setMaxFieldSize(int p0) throws java.sql.SQLException
{
invoke(m71, new Object[] {new Integer(p0)});
}
/** public abstract void java.sql.Statement.setMaxRows(int) throws java.sql.SQLException */
private static final Method m72 = getMethod(java.sql.PreparedStatement.class, "setMaxRows", new Class[] {int.class});
public void setMaxRows(int p0) throws java.sql.SQLException
{
invoke(m72, new Object[] {new Integer(p0)});
}
/** public abstract void java.sql.Statement.setQueryTimeout(int) throws java.sql.SQLException */
private static final Method m73 = getMethod(java.sql.PreparedStatement.class, "setQueryTimeout", new Class[] {int.class});
public void setQueryTimeout(int p0) throws java.sql.SQLException
{
invoke(m73, new Object[] {new Integer(p0)});
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -