home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / sql / RowSet.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  5.1 KB  |  253 lines

  1. package javax.sql;
  2.  
  3. import java.io.InputStream;
  4. import java.io.Reader;
  5. import java.math.BigDecimal;
  6. import java.net.URL;
  7. import java.sql.Array;
  8. import java.sql.Blob;
  9. import java.sql.Clob;
  10. import java.sql.Date;
  11. import java.sql.NClob;
  12. import java.sql.Ref;
  13. import java.sql.ResultSet;
  14. import java.sql.RowId;
  15. import java.sql.SQLException;
  16. import java.sql.SQLXML;
  17. import java.sql.Time;
  18. import java.sql.Timestamp;
  19. import java.util.Calendar;
  20. import java.util.Map;
  21.  
  22. public interface RowSet extends ResultSet {
  23.    String getUrl() throws SQLException;
  24.  
  25.    void setUrl(String var1) throws SQLException;
  26.  
  27.    String getDataSourceName();
  28.  
  29.    void setDataSourceName(String var1) throws SQLException;
  30.  
  31.    String getUsername();
  32.  
  33.    void setUsername(String var1) throws SQLException;
  34.  
  35.    String getPassword();
  36.  
  37.    void setPassword(String var1) throws SQLException;
  38.  
  39.    int getTransactionIsolation();
  40.  
  41.    void setTransactionIsolation(int var1) throws SQLException;
  42.  
  43.    Map<String, Class<?>> getTypeMap() throws SQLException;
  44.  
  45.    void setTypeMap(Map<String, Class<?>> var1) throws SQLException;
  46.  
  47.    String getCommand();
  48.  
  49.    void setCommand(String var1) throws SQLException;
  50.  
  51.    boolean isReadOnly();
  52.  
  53.    void setReadOnly(boolean var1) throws SQLException;
  54.  
  55.    int getMaxFieldSize() throws SQLException;
  56.  
  57.    void setMaxFieldSize(int var1) throws SQLException;
  58.  
  59.    int getMaxRows() throws SQLException;
  60.  
  61.    void setMaxRows(int var1) throws SQLException;
  62.  
  63.    boolean getEscapeProcessing() throws SQLException;
  64.  
  65.    void setEscapeProcessing(boolean var1) throws SQLException;
  66.  
  67.    int getQueryTimeout() throws SQLException;
  68.  
  69.    void setQueryTimeout(int var1) throws SQLException;
  70.  
  71.    void setType(int var1) throws SQLException;
  72.  
  73.    void setConcurrency(int var1) throws SQLException;
  74.  
  75.    void setNull(int var1, int var2) throws SQLException;
  76.  
  77.    void setNull(String var1, int var2) throws SQLException;
  78.  
  79.    void setNull(int var1, int var2, String var3) throws SQLException;
  80.  
  81.    void setNull(String var1, int var2, String var3) throws SQLException;
  82.  
  83.    void setBoolean(int var1, boolean var2) throws SQLException;
  84.  
  85.    void setBoolean(String var1, boolean var2) throws SQLException;
  86.  
  87.    void setByte(int var1, byte var2) throws SQLException;
  88.  
  89.    void setByte(String var1, byte var2) throws SQLException;
  90.  
  91.    void setShort(int var1, short var2) throws SQLException;
  92.  
  93.    void setShort(String var1, short var2) throws SQLException;
  94.  
  95.    void setInt(int var1, int var2) throws SQLException;
  96.  
  97.    void setInt(String var1, int var2) throws SQLException;
  98.  
  99.    void setLong(int var1, long var2) throws SQLException;
  100.  
  101.    void setLong(String var1, long var2) throws SQLException;
  102.  
  103.    void setFloat(int var1, float var2) throws SQLException;
  104.  
  105.    void setFloat(String var1, float var2) throws SQLException;
  106.  
  107.    void setDouble(int var1, double var2) throws SQLException;
  108.  
  109.    void setDouble(String var1, double var2) throws SQLException;
  110.  
  111.    void setBigDecimal(int var1, BigDecimal var2) throws SQLException;
  112.  
  113.    void setBigDecimal(String var1, BigDecimal var2) throws SQLException;
  114.  
  115.    void setString(int var1, String var2) throws SQLException;
  116.  
  117.    void setString(String var1, String var2) throws SQLException;
  118.  
  119.    void setBytes(int var1, byte[] var2) throws SQLException;
  120.  
  121.    void setBytes(String var1, byte[] var2) throws SQLException;
  122.  
  123.    void setDate(int var1, Date var2) throws SQLException;
  124.  
  125.    void setTime(int var1, Time var2) throws SQLException;
  126.  
  127.    void setTimestamp(int var1, Timestamp var2) throws SQLException;
  128.  
  129.    void setTimestamp(String var1, Timestamp var2) throws SQLException;
  130.  
  131.    void setAsciiStream(int var1, InputStream var2, int var3) throws SQLException;
  132.  
  133.    void setAsciiStream(String var1, InputStream var2, int var3) throws SQLException;
  134.  
  135.    void setBinaryStream(int var1, InputStream var2, int var3) throws SQLException;
  136.  
  137.    void setBinaryStream(String var1, InputStream var2, int var3) throws SQLException;
  138.  
  139.    void setCharacterStream(int var1, Reader var2, int var3) throws SQLException;
  140.  
  141.    void setCharacterStream(String var1, Reader var2, int var3) throws SQLException;
  142.  
  143.    void setAsciiStream(int var1, InputStream var2) throws SQLException;
  144.  
  145.    void setAsciiStream(String var1, InputStream var2) throws SQLException;
  146.  
  147.    void setBinaryStream(int var1, InputStream var2) throws SQLException;
  148.  
  149.    void setBinaryStream(String var1, InputStream var2) throws SQLException;
  150.  
  151.    void setCharacterStream(int var1, Reader var2) throws SQLException;
  152.  
  153.    void setCharacterStream(String var1, Reader var2) throws SQLException;
  154.  
  155.    void setNCharacterStream(int var1, Reader var2) throws SQLException;
  156.  
  157.    void setObject(int var1, Object var2, int var3, int var4) throws SQLException;
  158.  
  159.    void setObject(String var1, Object var2, int var3, int var4) throws SQLException;
  160.  
  161.    void setObject(int var1, Object var2, int var3) throws SQLException;
  162.  
  163.    void setObject(String var1, Object var2, int var3) throws SQLException;
  164.  
  165.    void setObject(String var1, Object var2) throws SQLException;
  166.  
  167.    void setObject(int var1, Object var2) throws SQLException;
  168.  
  169.    void setRef(int var1, Ref var2) throws SQLException;
  170.  
  171.    void setBlob(int var1, Blob var2) throws SQLException;
  172.  
  173.    void setBlob(int var1, InputStream var2, long var3) throws SQLException;
  174.  
  175.    void setBlob(int var1, InputStream var2) throws SQLException;
  176.  
  177.    void setBlob(String var1, InputStream var2, long var3) throws SQLException;
  178.  
  179.    void setBlob(String var1, Blob var2) throws SQLException;
  180.  
  181.    void setBlob(String var1, InputStream var2) throws SQLException;
  182.  
  183.    void setClob(int var1, Clob var2) throws SQLException;
  184.  
  185.    void setClob(int var1, Reader var2, long var3) throws SQLException;
  186.  
  187.    void setClob(int var1, Reader var2) throws SQLException;
  188.  
  189.    void setClob(String var1, Reader var2, long var3) throws SQLException;
  190.  
  191.    void setClob(String var1, Clob var2) throws SQLException;
  192.  
  193.    void setClob(String var1, Reader var2) throws SQLException;
  194.  
  195.    void setArray(int var1, Array var2) throws SQLException;
  196.  
  197.    void setDate(int var1, Date var2, Calendar var3) throws SQLException;
  198.  
  199.    void setDate(String var1, Date var2) throws SQLException;
  200.  
  201.    void setDate(String var1, Date var2, Calendar var3) throws SQLException;
  202.  
  203.    void setTime(int var1, Time var2, Calendar var3) throws SQLException;
  204.  
  205.    void setTime(String var1, Time var2) throws SQLException;
  206.  
  207.    void setTime(String var1, Time var2, Calendar var3) throws SQLException;
  208.  
  209.    void setTimestamp(int var1, Timestamp var2, Calendar var3) throws SQLException;
  210.  
  211.    void setTimestamp(String var1, Timestamp var2, Calendar var3) throws SQLException;
  212.  
  213.    void clearParameters() throws SQLException;
  214.  
  215.    void execute() throws SQLException;
  216.  
  217.    void addRowSetListener(RowSetListener var1);
  218.  
  219.    void removeRowSetListener(RowSetListener var1);
  220.  
  221.    void setSQLXML(int var1, SQLXML var2) throws SQLException;
  222.  
  223.    void setSQLXML(String var1, SQLXML var2) throws SQLException;
  224.  
  225.    void setRowId(int var1, RowId var2) throws SQLException;
  226.  
  227.    void setRowId(String var1, RowId var2) throws SQLException;
  228.  
  229.    void setNString(int var1, String var2) throws SQLException;
  230.  
  231.    void setNString(String var1, String var2) throws SQLException;
  232.  
  233.    void setNCharacterStream(int var1, Reader var2, long var3) throws SQLException;
  234.  
  235.    void setNCharacterStream(String var1, Reader var2, long var3) throws SQLException;
  236.  
  237.    void setNCharacterStream(String var1, Reader var2) throws SQLException;
  238.  
  239.    void setNClob(String var1, NClob var2) throws SQLException;
  240.  
  241.    void setNClob(String var1, Reader var2, long var3) throws SQLException;
  242.  
  243.    void setNClob(String var1, Reader var2) throws SQLException;
  244.  
  245.    void setNClob(int var1, Reader var2, long var3) throws SQLException;
  246.  
  247.    void setNClob(int var1, NClob var2) throws SQLException;
  248.  
  249.    void setNClob(int var1, Reader var2) throws SQLException;
  250.  
  251.    void setURL(int var1, URL var2) throws SQLException;
  252. }
  253.