Uses of Class
org.h2.value.Transfer

Packages that use Transfer
org.h2.command This package contains the parser and the base classes for prepared SQL statements. 
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.expression Expressions include mathematical operations, conditions, simple values, and functions. 
org.h2.result Implementation of row and internal result sets. 
org.h2.value Data type and value implementations. 
 

Uses of Transfer in org.h2.command
 

Constructor parameters in org.h2.command with type arguments of type Transfer
CommandRemote(SessionRemote session, ObjectArray<Transfer> transferList, java.lang.String sql, int fetchSize)
           
 

Uses of Transfer in org.h2.engine
 

Methods in org.h2.engine with parameters of type Transfer
 void SessionRemote.done(Transfer transfer)
          Called to flush the output after data has been sent to the server and just before receiving data.
 

Uses of Transfer in org.h2.expression
 

Methods in org.h2.expression with parameters of type Transfer
 void ParameterRemote.readMetaData(Transfer transfer)
          Write the parameter meta data from the transfer object.
static void ParameterRemote.writeMetaData(Transfer transfer, ParameterInterface p)
          Write the parameter meta data to the transfer object.
 

Uses of Transfer in org.h2.result
 

Methods in org.h2.result with parameters of type Transfer
static void ResultColumn.writeColumn(Transfer out, ResultInterface result, int i)
          Write a result column to the given output.
 

Constructors in org.h2.result with parameters of type Transfer
ResultRemote(SessionRemote session, Transfer transfer, int id, int columnCount, int fetchSize)
           
 

Uses of Transfer in org.h2.value
 

Methods in org.h2.value that return Transfer
 Transfer Transfer.openNewConnection()
          Open a new new connection to the same address and port as this one.
 Transfer Transfer.writeBoolean(boolean x)
          Write a boolean.
 Transfer Transfer.writeBytes(byte[] data)
          Write a byte array.
 Transfer Transfer.writeInt(int x)
          Write an int.
 Transfer Transfer.writeLong(long x)
          Write a long.
 Transfer Transfer.writeString(java.lang.String s)
          Write a string.