MySQL Connector/J size='-1'>5.1.6

Uses of Class
com.mysql.jdbc.ResultSetRow

Packages that use ResultSetRow
com.mysql.jdbc   
 

Uses of ResultSetRow in com.mysql.jdbc
 

Subclasses of ResultSetRow in com.mysql.jdbc
 class BufferRow
          A RowHolder implementation that holds one row packet (which is re-used by the driver, and thus saves memory allocations), and tries when possible to avoid allocations to break out the results as individual byte[]s.
 class ByteArrayRow
          A RowHolder implementation that is for cached results (a-la mysql_store_result()).
 

Fields in com.mysql.jdbc declared as ResultSetRow
protected  ResultSetRow ResultSetImpl.thisRow
          Pointer to current row data
 

Methods in com.mysql.jdbc that return ResultSetRow
 ResultSetRow RowData.getAt(int index)
          Only works on non dynamic result sets.
 ResultSetRow RowDataDynamic.getAt(int ind)
          Only works on non dynamic result sets.
 ResultSetRow RowDataCursor.getAt(int ind)
          Only works on non dynamic result sets.
 ResultSetRow RowDataStatic.getAt(int atIndex)
          DOCUMENT ME!
 ResultSetRow RowData.next()
          Returns the next row.
 ResultSetRow RowDataDynamic.next()
          Returns the next row.
 ResultSetRow RowDataCursor.next()
          Returns the next row.
 ResultSetRow RowDataStatic.next()
          DOCUMENT ME!
 ResultSetRow ResultSetRow.setMetadata(Field[] f)
           
 ResultSetRow BufferRow.setMetadata(Field[] f)
           
 

Methods in com.mysql.jdbc with parameters of type ResultSetRow
 void RowData.addRow(ResultSetRow row)
          Adds a row to this row data.
 void RowDataDynamic.addRow(ResultSetRow row)
          Adds a row to this row data.
 void RowDataCursor.addRow(ResultSetRow row)
          Adds a row to this row data.
 void RowDataStatic.addRow(ResultSetRow row)
          DOCUMENT ME!
 


MySQL Connector/J size='-1'>5.1.6