Methods Summary |
---|
public void | addBatch(java.lang.String sql)
try {
this.stmt.addBatch(sql);
} catch (SQLException se) {
throw se;
}
|
public void | cancel()
try {
this.stmt.cancel();
} catch (SQLException se) {
throw se;
}
|
public void | clearBatch()
try {
this.stmt.clearBatch();
} catch (SQLException se) {
throw se;
}
|
public void | clearWarnings()
try {
this.stmt.clearWarnings();
} catch (SQLException se) {
throw se;
}
|
public void | close()
try {
this.stmt.close();
} catch (SQLException se) {
throw se;
}
|
public boolean | execute(java.lang.String sql)
try {
this.conn.checkXact();
return (this.stmt.execute(sql));
} catch (SQLException se) {
throw se;
}
|
public boolean | execute(java.lang.String sql, int autoGeneratedKeys)
try {
return (this.stmt.execute(sql,autoGeneratedKeys));
} catch (SQLException se) {
throw se;
}
|
public boolean | execute(java.lang.String sql, int[] columnIndexes)
try {
return (this.stmt.execute(sql,columnIndexes));
} catch (SQLException se) {
throw se;
}
|
public boolean | execute(java.lang.String sql, java.lang.String[] columnNames)
try {
return (this.stmt.execute(sql,columnNames));
} catch (SQLException se) {
throw se;
}
|
public int[] | executeBatch()
try {
this.conn.checkXact();
return (this.stmt.executeBatch());
} catch (SQLException se) {
throw se;
}
|
public java.sql.ResultSet | executeQuery(java.lang.String sql)
try {
this.conn.checkXact();
return (this.stmt.executeQuery(sql));
} catch (SQLException se) {
throw se;
}
|
public int | executeUpdate(java.lang.String sql, int autoGeneratedKeys)
try {
return (this.stmt.executeUpdate(sql,autoGeneratedKeys) );
} catch (SQLException se) {
throw se;
}
|
public int | executeUpdate(java.lang.String sql, int[] columnIndexes)
try {
return (this.stmt.executeUpdate(sql,columnIndexes));
} catch (SQLException se) {
throw se;
}
|
public int | executeUpdate(java.lang.String sql, java.lang.String[] columnNames)
try {
return (this.stmt.executeUpdate(sql,columnNames));
} catch (SQLException se) {
throw se;
}
|
public int | executeUpdate(java.lang.String sql)
try {
this.conn.checkXact();
return (this.stmt.executeUpdate(sql));
} catch (SQLException se) {
throw se;
}
|
public java.sql.Connection | getConnection()
try {
return (this.stmt.getConnection());
} catch (SQLException se) {
throw se;
}
|
public int | getFetchDirection()
try {
return (this.stmt.getFetchDirection());
} catch (SQLException se) {
throw se;
}
|
public int | getFetchSize()
try {
return (this.stmt.getFetchSize());
} catch (SQLException se) {
throw se;
}
|
public java.sql.ResultSet | getGeneratedKeys()
try {
return (this.stmt.getGeneratedKeys());
} catch (SQLException se) {
throw se;
}
|
public int | getMaxFieldSize()
try {
return (this.stmt.getMaxFieldSize());
} catch (SQLException se) {
throw se;
}
|
public int | getMaxRows()
try {
return (this.stmt.getMaxRows());
} catch (SQLException se) {
throw se;
}
|
public boolean | getMoreResults()
try {
return (this.stmt.getMoreResults());
} catch (SQLException se) {
throw se;
}
|
public boolean | getMoreResults(int current)
try {
return (this.stmt.getMoreResults(current));
} catch (SQLException se) {
throw se;
}
|
public int | getQueryTimeout()
try {
return (this.stmt.getQueryTimeout());
} catch (SQLException se) {
throw se;
}
|
public java.sql.ResultSet | getResultSet()
try {
return (this.stmt.getResultSet());
} catch (SQLException se) {
throw se;
}
|
public int | getResultSetConcurrency()
try {
return (this.stmt.getResultSetConcurrency());
} catch (SQLException se) {
throw se;
}
|
public int | getResultSetHoldability()
try {
return (this.stmt.getResultSetHoldability());
} catch (SQLException se) {
throw se;
}
|
public int | getResultSetType()
try {
return (this.stmt.getResultSetType());
} catch (SQLException se) {
throw se;
}
|
public int | getUpdateCount()
try {
return (this.stmt.getUpdateCount());
} catch (SQLException se) {
throw se;
}
|
public java.sql.SQLWarning | getWarnings()
try {
return (this.stmt.getWarnings());
} catch (SQLException se) {
throw se;
}
|
public void | setCursorName(java.lang.String name)
try {
this.stmt.setCursorName(name);
} catch (SQLException se) {
throw se;
}
|
public void | setEscapeProcessing(boolean enable)
try {
this.stmt.setEscapeProcessing(enable);
} catch (SQLException se) {
throw se;
}
|
public void | setFetchDirection(int direction)
try {
this.stmt.setFetchDirection(direction);
} catch (SQLException se) {
throw se;
}
|
public void | setFetchSize(int rows)
try {
this.stmt.setFetchSize(rows);
} catch (SQLException se) {
throw se;
}
|
public void | setMaxFieldSize(int max)
try {
this.stmt.setMaxFieldSize(max);
} catch (SQLException se) {
throw se;
}
|
public void | setMaxRows(int max)
try {
this.stmt.setMaxRows(max);
} catch (SQLException se) {
throw se;
}
|
public void | setQueryTimeout(int seconds)
try {
this.stmt.setQueryTimeout(seconds);
} catch (SQLException se) {
throw se;
}
|
public java.sql.Statement | unwrapStatement()
return this.stmt;
|