Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.mysql.jdbc.ResultSet

Uses of ResultSet in com.mysql.jdbc
 

Subclasses of ResultSet in com.mysql.jdbc
 class UpdatableResultSet
          A result set that is updatable.
 

Fields in com.mysql.jdbc declared as ResultSet
protected  ResultSet Statement.nextResults
          The next result set
protected  ResultSet Statement.results
          The current results
private  ResultSet RowDataStatic.owner
           
private  ResultSet RowDataDynamic.owner
           
private  ResultSet Blob.creatorResultSet
          The ResultSet that created this BLOB
 

Methods in com.mysql.jdbc that return ResultSet
 ResultSet RowDataStatic.getOwner()
           
 ResultSet RowDataDynamic.getOwner()
           
 ResultSet RowData.getOwner()
          Returns the result set that 'owns' this RowData
protected  ResultSet MysqlIO.getResultSet(long columnCount, int maxRows, int resultSetType, boolean streamResults, java.lang.String catalog)
          Build a result set.
(package private)  ResultSet MysqlIO.sqlQuery(java.lang.String query, int maxRows, java.lang.String characterEncoding, Connection conn, int resultSetType, boolean streamResults, java.lang.String catalog)
          Send a query specified in the String "Query" to the MySQL server.
(package private)  ResultSet MysqlIO.sqlQueryDirect(Buffer queryPacket, int maxRows, Connection conn, int resultSetType, boolean streamResults, java.lang.String catalog)
          Send a query stored in a packet directly to the server.
private  ResultSet MysqlIO.buildResultSetWithRows(java.lang.String catalog, Field[] fields, RowData rows, int resultSetConcurrency)
           
private  ResultSet MysqlIO.buildResultSetWithUpdates(Buffer resultPacket)
           
private  ResultSet MysqlIO.sendFileToServer(java.lang.String fileName)
          Reads and sends a file to the server for LOAD DATA LOCAL INFILE
(package private)  ResultSet Connection.execSQL(java.lang.String sql, int maxRowsToRetreive, java.lang.String catalog)
          Send a query to the server.
(package private)  ResultSet Connection.execSQL(java.lang.String sql, int maxRows, int resultSetType, boolean streamResults, boolean queryIsSelectOnly, java.lang.String catalog)
           
(package private)  ResultSet Connection.execSQL(java.lang.String sql, int maxRows, Buffer packet, java.lang.String catalog)
           
(package private)  ResultSet Connection.execSQL(java.lang.String sql, int maxRows, Buffer packet, int resultSetType, java.lang.String catalog)
           
(package private)  ResultSet Connection.execSQL(java.lang.String sql, int maxRows, Buffer packet, int resultSetType, boolean streamResults, boolean queryIsSelectOnly, java.lang.String catalog)
           
 

Methods in com.mysql.jdbc with parameters of type ResultSet
 void RowDataStatic.setOwner(ResultSet rs)
           
 void RowDataDynamic.setOwner(ResultSet rs)
           
 void RowData.setOwner(ResultSet rs)
          Set the result set that 'owns' this RowData
 

Constructors in com.mysql.jdbc with parameters of type ResultSet
Blob(byte[] data, ResultSet creatorResultSet, int columnIndex)
          Creates an updatable BLOB that can update in-place (not implemented yet).