📄 commonpreparedstatement.java
字号:
/* (非 Javadoc)
* @see java.sql.PreparedStatement#setTimestamp(int, java.sql.Timestamp)
*/
public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {
ps.setTimestamp(parameterIndex, x);
}
/* (非 Javadoc)
* @see java.sql.PreparedStatement#setDate(int, java.sql.Date, java.util.Calendar)
*/
public void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException {
ps.setDate(parameterIndex, x, cal);
}
/* (非 Javadoc)
* @see java.sql.PreparedStatement#setTime(int, java.sql.Time, java.util.Calendar)
*/
public void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException {
ps.setTime(parameterIndex, x, cal);
}
/* (非 Javadoc)
* @see java.sql.PreparedStatement#setTimestamp(int, java.sql.Timestamp, java.util.Calendar)
*/
public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException {
ps.setTimestamp(parameterIndex, x, cal);
}
/* (非 Javadoc)
* @see java.sql.Statement#getFetchDirection()
*/
public int getFetchDirection() throws SQLException {
return ps.getFetchDirection();
}
/* (非 Javadoc)
* @see java.sql.Statement#getFetchSize()
*/
public int getFetchSize() throws SQLException {
return ps.getFetchSize();
}
/* (非 Javadoc)
* @see java.sql.Statement#getMaxFieldSize()
*/
public int getMaxFieldSize() throws SQLException {
return ps.getMaxFieldSize();
}
/* (非 Javadoc)
* @see java.sql.Statement#getMaxRows()
*/
public int getMaxRows() throws SQLException {
return ps.getMaxRows();
}
/* (非 Javadoc)
* @see java.sql.Statement#getQueryTimeout()
*/
public int getQueryTimeout() throws SQLException {
return ps.getQueryTimeout();
}
/* (非 Javadoc)
* @see java.sql.Statement#getResultSetConcurrency()
*/
public int getResultSetConcurrency() throws SQLException {
return ps.getResultSetConcurrency();
}
/* (非 Javadoc)
* @see java.sql.Statement#getResultSetHoldability()
*/
public int getResultSetHoldability() throws SQLException {
return ps.getResultSetHoldability();
}
/* (非 Javadoc)
* @see java.sql.Statement#getResultSetType()
*/
public int getResultSetType() throws SQLException {
return ps.getResultSetType();
}
/* (非 Javadoc)
* @see java.sql.Statement#getUpdateCount()
*/
public int getUpdateCount() throws SQLException {
return ps.getUpdateCount();
}
/* (非 Javadoc)
* @see java.sql.Statement#cancel()
*/
public void cancel() throws SQLException {
ps.cancel();
}
/* (非 Javadoc)
* @see java.sql.Statement#clearBatch()
*/
public void clearBatch() throws SQLException {
ps.clearBatch();
}
/* (非 Javadoc)
* @see java.sql.Statement#clearWarnings()
*/
public void clearWarnings() throws SQLException {
ps.clearWarnings();
}
/* (非 Javadoc)
* @see java.sql.Statement#close()
*/
public void close() throws SQLException {
ps.close();
}
/* (非 Javadoc)
* @see java.sql.Statement#getMoreResults()
*/
public boolean getMoreResults() throws SQLException {
return ps.getMoreResults();
}
/* (非 Javadoc)
* @see java.sql.Statement#executeBatch()
*/
public int[] executeBatch() throws SQLException {
return ps.executeBatch();
}
/* (非 Javadoc)
* @see java.sql.Statement#setFetchDirection(int)
*/
public void setFetchDirection(int direction) throws SQLException {
ps.setFetchDirection(direction);
}
/* (非 Javadoc)
* @see java.sql.Statement#setFetchSize(int)
*/
public void setFetchSize(int rows) throws SQLException {
ps.setFetchSize(rows);
}
/* (非 Javadoc)
* @see java.sql.Statement#setMaxFieldSize(int)
*/
public void setMaxFieldSize(int max) throws SQLException {
ps.setMaxFieldSize(max);
}
/* (非 Javadoc)
* @see java.sql.Statement#setMaxRows(int)
*/
public void setMaxRows(int max) throws SQLException {
ps.setMaxRows(max);
}
/* (非 Javadoc)
* @see java.sql.Statement#setQueryTimeout(int)
*/
public void setQueryTimeout(int seconds) throws SQLException {
ps.setQueryTimeout(seconds);
}
/* (非 Javadoc)
* @see java.sql.Statement#getMoreResults(int)
*/
public boolean getMoreResults(int current) throws SQLException {
return ps.getMoreResults(current);
}
/* (非 Javadoc)
* @see java.sql.Statement#setEscapeProcessing(boolean)
*/
public void setEscapeProcessing(boolean enable) throws SQLException {
ps.setEscapeProcessing(enable);
}
/* (非 Javadoc)
* @see java.sql.Statement#executeUpdate(java.lang.String)
*/
public int executeUpdate(String sql) throws SQLException {
return ps.executeUpdate(sql);
}
/* (非 Javadoc)
* @see java.sql.Statement#addBatch(java.lang.String)
*/
public void addBatch(String sql) throws SQLException {
ps.addBatch(sql);
}
/* (非 Javadoc)
* @see java.sql.Statement#setCursorName(java.lang.String)
*/
public void setCursorName(String name) throws SQLException {
ps.setCursorName(name);
}
/* (非 Javadoc)
* @see java.sql.Statement#execute(java.lang.String)
*/
public boolean execute(String sql) throws SQLException {
return ps.execute(sql);
}
/* (非 Javadoc)
* @see java.sql.Statement#executeUpdate(java.lang.String, int)
*/
public int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException {
return ps.executeUpdate(sql, autoGeneratedKeys);
}
/* (非 Javadoc)
* @see java.sql.Statement#execute(java.lang.String, int)
*/
public boolean execute(String sql, int autoGeneratedKeys) throws SQLException {
return ps.execute(sql, autoGeneratedKeys);
}
/* (非 Javadoc)
* @see java.sql.Statement#executeUpdate(java.lang.String, int[])
*/
public int executeUpdate(String sql, int[] columnIndexes) throws SQLException {
return ps.executeUpdate(sql, columnIndexes);
}
/* (非 Javadoc)
* @see java.sql.Statement#execute(java.lang.String, int[])
*/
public boolean execute(String sql, int[] columnIndexes) throws SQLException {
return ps.execute(sql, columnIndexes);
}
/* (非 Javadoc)
* @see java.sql.Statement#getConnection()
*/
public Connection getConnection() throws SQLException {
return ps.getConnection();
}
/* (非 Javadoc)
* @see java.sql.Statement#getGeneratedKeys()
*/
public ResultSet getGeneratedKeys() throws SQLException {
return new CommonResultSet(ps.getGeneratedKeys(), param);
}
/* (非 Javadoc)
* @see java.sql.Statement#getResultSet()
*/
public ResultSet getResultSet() throws SQLException {
return new CommonResultSet(ps.getResultSet(), param);
}
/* (非 Javadoc)
* @see java.sql.Statement#getWarnings()
*/
public SQLWarning getWarnings() throws SQLException {
return ps.getWarnings();
}
/* (非 Javadoc)
* @see java.sql.Statement#executeUpdate(java.lang.String, java.lang.String[])
*/
public int executeUpdate(String sql, String[] columnNames) throws SQLException {
return ps.executeUpdate(sql, columnNames);
}
/* (非 Javadoc)
* @see java.sql.Statement#execute(java.lang.String, java.lang.String[])
*/
public boolean execute(String sql, String[] columnNames) throws SQLException {
return ps.execute(sql, columnNames);
}
/* (非 Javadoc)
* @see java.sql.Statement#executeQuery(java.lang.String)
*/
public ResultSet executeQuery(String sql) throws SQLException {
return new CommonResultSet(ps.executeQuery(sql), param);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -